any way to loop in a json
file and print all keys and values like a dictionary?
Example
foreach (string item in result.Data.Keys)
{
Debug.LogError("KEY:"+item);
Debug.LogError("Value:" + result.Data[item]);
}
I have tried JsonUtility
and simple json
, but i cant print the KEY value
yet
Any solution? thanks