Ive got a JSON string im sending from my web client to my webapi. This JSON string kind of dynamically formed.
So I want to know if there is a way if I can convert this JSON string into a list/array of dynamic objects. So can handle it along the same line as:
var DynamicArray = WhatEverJSONConvertor(JSONString);
for (int i = 0; i < DynamicArray.length; i++)
{
Console.WriteLine(DynamicArray[i].AFieldInTheObject);
}
Is this possible? What JSON convertor would I use this to accomplish this?
Thanks