I would like to know if there is a way to read one json object at a time using Json.net. Currently, here is the code I'm using which works but loads the whole file in the streamreader but not able to just parse one object at a time. any suggestions??
StreamReader streamReader = new StreamReader(@"Sample.json");
List<Member> mlist;
using (JsonReader reader = new JsonTextReader(streamReader))
{
JsonSerializer serializer = new JsonSerializer();
mlist = serializer.Deserialize<List<Member>>(reader);
}