使用Json.Net将namevaluecollection转换为Json

时间:2018-10-09 14:01:51

标签: json vb.net json.net

我是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字符串中的结果显示在下面的屏幕快照中。 Runtime Value of my Json String

请忍受我,我对Json真的很陌生,更不用说对json进行序列化和反序列化了。

1 个答案:

答案 0 :(得分:0)

将NameValueCollection转换为字典