0

I have data in .json file.

My json contains data like this,

enter image description here

I am looking for ways to parse it in c#. Hope everybody help please

1
  • The keyword you want to use in your searches is "deserialization". Also, please include any code or data in your question as text rather than images, because search engines and screenreaders can't read images. Commented Mar 9, 2022 at 15:22

1 Answer 1

2

Two options:

  1. JsonUtility make a c# class structure that mirrors the json data and call JsonUtility.FromJson
  2. using Newtonsoft.Json; you can deserialize it without creating a helper structure with JsonConvert.Deserialize
Sign up to request clarification or add additional context in comments.

1 Comment

you can code in c# . I really do not understand

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.