I have a string with an array of Json inside
"[{'firstname':'john','lastname':'doe'},{'firstname':'mary','lastname':'jane'}]"
How do I convert that to a string array of json?
For example the above would be
["{'firstname':'john','lastname':'doe'}","{'firstname':'mary','lastname':'jane'}"]
I then can use JObject.Parse on each of the elements of the array to make JObjects from the json.