Parse Complex Json Data with VB.net and Newtonsoft.Json
问题 I'm building a windows application using vb.net to take a Json file that will be downloaded daily and parse it and enter the values into a SQL database. The only part I'm getting stuck on is being about to parse the Json data to get the values I need. Public Sub json_parse(ByVal result_json As String) Try Dim json As String = result_json Dim ser As JObject = JObject.Parse(json) Dim data As List(Of JToken) = ser.Children().ToList For Each item As JProperty In data item.CreateReader() Select