I have data in .json file.
My json contains data like this,
I am looking for ways to parse it in c#. Hope everybody help please
CodePudding user response:
Two options:
- JsonUtility make a c# class structure that mirrors the json data and call JsonUtility.FromJson
- using Newtonsoft.Json; you can deserialize it without creating a helper structure with JsonConvert.Deserialize