UnityEditorInternal.JSONParser.Parse C# (CSharp) Method

Parse() public method

public Parse ( ) : UnityEditorInternal.JSONValue
return UnityEditorInternal.JSONValue
        public JSONValue Parse()
        {
            this.cur = this.json[this.idx];
            return this.ParseValue();
        }

Usage Example

Ejemplo n.º 1
0
 public static JSONValue SimpleParse(string jsondata)
 {
   JSONParser jsonParser = new JSONParser(jsondata);
   try
   {
     return jsonParser.Parse();
   }
   catch (JSONParseException ex)
   {
     Debug.LogError((object) ex.Message);
   }
   return new JSONValue((object) null);
 }
All Usage Examples Of UnityEditorInternal.JSONParser::Parse