I have a serialized json string in the format:
"[{\"Version\":\"8.63\",\"Date\":\"07\/11\/2011 00:00:00\",\"Count\":213},
{\"Version\":\"1.0\",\"Date\":\"07\/11\/2011 00:00:00\",\"Count\":1},
.........
,{\"Version\":\"7.7\",\"Date\":\"31\/10\/2011 00:00:00\",\"Count\":0}]"
I want to break down this string into an array of jsonObjects. I know if you have a string containing only one jsonObject then we can easily create a jsonObject.
Any help would be appreciated,
Thanks