Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在没有序列化程序或第三方 DLL 的情况下在 vb.net 中编写此 JSON 字符串?
Dim myString As String = [ { 'a': 'zzz'},{ 'b': 'zzz'}{ 'c': 'zzz'} ]
Dim myString As String = "[ { 'a': 'zzz'},{ 'b': 'zzz'},{ 'c': 'zzz'} ]"
您应该在 b 和 c 之间添加一个逗号
Dim myString As String = "[ { 'a': 'zzz'},{ 'b': 'zzz'}{ 'c': 'zzz'} ]"