I have following string.
string jsonString = "[['Angelica','Ramos'],['Ashton','Cox']]";
I want to parse it into Javascript
array like
[
[
"Angelica",
"Ramos"
],
[
"Ashton",
"Cox"
]
]
similar to Json.parse
command. Any idea how to do this with .NET?
I tried both
JsonConvert.DeserializeObject(jsonString)
and
JsonConvert.DeserializeObject<List<object>>(jsonString)
but no luck so far
UPDATE ANSWER :
Oluwafemi
answer is correct, here's the example between Oluwafemi
answer and WHOl
>>(json); ?
– Sagi Sep 14 '15 at 08:57