- Home /
Question by
A_munim · Jan 28, 2018 at 10:04 AM ·
jsondeserialize
Json Deserialize to dictionary[Solved]
This is what I get
[
{
"id": "id",
"name": "name",
"symbol": "symbol",
"rank": "1",
},
{
"id": "id",
"name": "name",
"symbol": "symbol",
"rank": "2",
}
]
practically more than that but You got what I mean just want to store the values in a dictonary.
HOW???
This is what I do now I made a class with following values like public string id; public string name; and so on
then a list of those. Now the problem comes how would I deserialize the data from the server.
Comment
Best Answer
Answer by A_munim · Jan 28, 2018 at 11:09 AM
Any one having the same pattern as me Here is the Answer
JSON .NET for Unity (int the Asset Store).
Rest You will figure it out.
Your answer
Follow this Question
Related Questions
JSON invalid value 1 Answer
Read JSON from Facebook? 0 Answers
Deserializing JSON 1 Answer
Deserialize Json into list.,how to deserialize a list via .FromJson 1 Answer
Paring json Array object 3 Answers