Exemplo n.º 1
0
        public static object FromJSON(string _inputJSONString, ref int _errorIndex)
        {
            JSONReader _reader = new JSONReader(_inputJSONString);

            return(_reader.Deserialise(ref _errorIndex));
        }
Exemplo n.º 2
0
        public static object FromJSON(string _inputJSONString)
        {
            JSONReader _reader = new JSONReader(_inputJSONString);

            return(_reader.Deserialise());
        }