JSONObject icon indicating copy to clipboard operation
JSONObject copied to clipboard

Can't Parse Array Json proper

Open gametrainee opened this issue 2 years ago • 0 comments

JSONObject array=new JSONObject("[]");
Debug.Log(array.list);

Output : Null

JSONObject array=new JSONObject("[ ]"); // whitespace between square bracket 
Debug.Log(array.list);

Output : System.Collections.Generic.List`1[Defective.JSON.JSONObject] Its return List with count 1

gametrainee avatar Jul 11 '23 08:07 gametrainee