I am trying to read a JSON file and parse it. I have this code for reading from my file
StreamReader re = new StreamReader("artists.json");
JsonTextReader reader = new JsonTextReader(re);
But how do I parse it now from reader so I can search data from the file?
I tried reading the documentation but couldn't find anything
using Newtonsoft.Json;
//..
JsonSerializer se = new JsonSerializer();
object parsedData = se.Deserialize(reader);