I have a json document that looks something like this:
[
{
attr11:"value11",
attr12:"value12"
},
{
attr21:"value21",
attr22:"value22"
},
{
attr31:"value31",
attr32:"value32"
}
]
Visual Studio underlines the first letters of attrN and says "an unexpected sequence of characters in the member name." What is it?
nix86 source
share