Closed sfegsetsfe closed 4 years ago
If we have a dictionary like this: myDictionary.Add "a""b", "xxx". Then the serialized JSON string will have this part {"a"b" : "xxx"} which will result in an error when parsed.
myDictionary.Add "a""b", "xxx"
{"a"b" : "xxx"}
If we have a dictionary like this:
myDictionary.Add "a""b", "xxx"
. Then the serialized JSON string will have this part{"a"b" : "xxx"}
which will result in an error when parsed.