I am using json.net for json object parsing. I have a string array that has of Json objects. so instead of 1 string with Json Array, I have each json object on different index of string array.
I need to de-serialize this string[] of json object into List<T>.
If it was string of Json Array to List<T> I would call JsonConvert.DeserializeObject<List<T>>(result);
But for this what would be the best approach to convert string[] of jsonobject into List<T>.
