using System.Collections.Generic;
using Newtonsoft.Json.Linq;
public static void Main()
""message"": ""Success.""
""delivery_start"": ""2019-03-01 00:00:00"",
""delivery_end"": ""2019-03-31 23:59:59"",
""commodity_id"": ""119555"",
""customer_commodity_id"": ""5813"",
""commodity_display_name"": ""Corn (#2 Yellow)"",
""deliveryMonth"": ""Mar19"",
""deliveryYear"": ""2019"",
""basismonth"": ""Mar 2019"",
""timestamp"": 1544543949,
""pricecwt"": ""6.205357"",
""pricetonne"": ""136.804545"",
""basistonne"": -1377.8875,
""pctchange"": ""-0.43"",
""cashpricetonne"": ""136.804545"",
""delivery_sort"": ""2019-03-01 00:00:00"",
""delivery_start_raw"": ""2019-03-01 00:00:00"",
""delivery_end_raw"": ""2019-03-31 23:59:59"",
""basisSymbol"": ""ZCBH19-54943-5813.CM"",
""cashPriceSymbol"": ""ZCPH19-54943-5813.CM""
""delivery_start"": ""2019-12-01 00:00:00"",
""delivery_end"": ""2019-12-31 23:59:59"",
""commodity_id"": ""119555"",
""customer_commodity_id"": ""5813"",
""commodity_display_name"": ""Corn (#2 Yellow)"",
""deliveryMonth"": ""Dec19"",
""deliveryYear"": ""2019"",
""basismonth"": ""Dec 2019"",
""timestamp"": 1544543947,
""pricecwt"": ""6.361607"",
""basiscwt"": -80.3571428571,
""pricetonne"": ""140.249263"",
""basistonne"": -1771.56964286,
""pctchange"": ""-0.28"",
""cashpricetonne"": ""140.249263"",
""delivery_sort"": ""2019-12-01 00:00:00"",
""delivery_start_raw"": ""2019-12-01 00:00:00"",
""delivery_end_raw"": ""2019-12-31 23:59:59"",
""basisSymbol"": ""ZCBZ19-54943-5813.CM"",
""cashPriceSymbol"": ""ZCPZ19-54943-5813.CM""
""company"": ""Ag Partners"",
""location"": ""Brown/Sab/Rulo/WC"",
""facility_type"": ""Country Elevator"",
""address"": ""2750 Acorn Rd"",
""phone"": ""785-284-2185"",
""url"": ""www.agpartnerscoop.com"",
""county"": ""Nemaha County"",
""basisTimestamp"": ""2018-12-11T09:02:48-06:00""
JObject jo = JObject.Parse(json);
string cashPrice = (string)jo.SelectToken("results[0].bids[0].cashprice");
Console.WriteLine(cashPrice);