UnityEditorInternal.JSONParser.SimpleParse C# (CSharp) Method

SimpleParse() public static method

public static SimpleParse ( string jsondata ) : UnityEditorInternal.JSONValue
jsondata string
return UnityEditorInternal.JSONValue
        public static JSONValue SimpleParse(string jsondata)
        {
            JSONParser parser = new JSONParser(jsondata);
            try
            {
                return parser.Parse();
            }
            catch (JSONParseException exception)
            {
                Debug.LogError(exception.Message);
            }
            return new JSONValue(null);
        }