Imports System.Collections.Generic
Dim response = "{""AMD"":{""assetType"":""EQUITY"",""symbol"":""AMD"",""description"":""Advanced Micro Devices, Inc. - Common Stock"",""bidPrice"":92.11},""MSFT"":{""assetType"":""EQUITY"",""symbol"":""MSFT"",""description"":""Microsoft Corporation - Common Stock"",""bidPrice"":243.1}}"
Dim stocks = JsonConvert.DeserializeObject(Of Dictionary(Of String, Stock))(response)
Console.WriteLine("{0}: {1}", kvp.Key, kvp.Value.bidPrice)
Public Property assetType As String
Public Property symbol As String
Public Property description As String
Public Property bidPrice As Double