I am trying to use the json file for my game and in the file I have entry having array like below:
{
"1":
{
"number": "1",
"entries": ["value 1","value 2"]
}
}
if I set text like JSON.Get("1.number"), I get to print number 1 but when I do JSON.Get("1.entries") I get 0 which is because it's array I guess.
But here I want to get the count of the entries which will be 2 here. How can I get the count of array here.