我是Json的新手,我在网上使用了一些示例,并尝试将namevaluecollection转换为Json(使用json.net nuget包),并且转换后我只看到The Key而不是json字符串中的值。我想念什么。
Dim JSONString As String = ""
Dim test As NameValueCollection = New NameValueCollection
test.Add("1", "One")
test.Add("2", "Two")
test.Add("3", "Three")
JSONString = JsonConvert.SerializeObject(test)
请忍受我,我对Json真的很陌生,更不用说对json进行序列化和反序列化了。
答案 0 :(得分:0)
将NameValueCollection转换为字典