public static object FromJSON (string _inputJSONString, ref int _errorIndex) { JSONReader _reader = new JSONReader(_inputJSONString); return _reader.Deserialise(ref _errorIndex); }
public static object FromJSON(string _inputJSONString, ref int _errorIndex) { JSONReader _reader = new JSONReader(_inputJSONString); return(_reader.Deserialise(ref _errorIndex)); }
public static object FromJSON (string _inputJSONString) { JSONReader _reader = new JSONReader(_inputJSONString); return _reader.Deserialise(); }
public static object FromJSON(string _inputJSONString) { JSONReader _reader = new JSONReader(_inputJSONString); return(_reader.Deserialise()); }