Description of JSONReader.
Exemplo n.º 1
0
		public static object ParseJson(String json) {
			JsonReader reader = new JsonReader(new StringReader(json));

			return reader.ReadValue();
		}