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);
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With