I usually use newtonsoft.json to serialize or deserialize json ↔ string
You can try using newtonsoft.json and there are lots of examples to deserialize to a class and then to a list.
make sure the json object and the class have the same properties.
Newtonsoft.Json supports all lists etc as its based on c# / DOTNET
Let me know it if works, if not, please post a code snippet so that we can help you.
@Baste I figured out that my www json response didn’t match with my JSON generated from my php business logic, my bad
The first thing that I did was generate the JSON with the JsonUtility (string json = JsonUtility.ToJson(game);) and then I compared that string with the json returned by my logical in PHP.
It’s good to know that are other libraries tho serialize/deserialize JSON strings. Thank you so much for your answer, It’s gonna be really useful in the future if I have a problem with the JsonUtility.