I have a requirement of deserializing JSON string and store it into a list or an array. Hence have used bellow give code
dynamic jr = JsonConvert.DeserializeObject(paramList);
foreach (var item.Value in jr)
{
}
String value in paramList is like
{"0":["1234","2222","4321","211000","90024","12","2121","322223","2332","3232"],"1":["0856","6040222","175002","23572","","","","","",""]}
String value in item.Value is like -
{[ "1234", "2222", "4321", "211000", "900224", "12", "2121", "322223", "2332", "3232"]}
Hence kindly help me to iterate this string, so that i can put into an array or list.
Thanks