UnityEditorInternal.JSONParser.JSONParser C# (CSharp) Method

JSONParser() public method

public JSONParser ( string jsondata ) : System
jsondata string
return System
        public JSONParser(string jsondata)
        {
            this.json = jsondata + "    ";
            this.line = 1;
            this.linechar = 1;
            this.len = this.json.Length;
            this.idx = 0;
            this.pctParsed = 0;
        }