Description of JSONReader.
		public static object ParseJson(String json) {
			JsonReader reader = new JsonReader(new StringReader(json));

			return reader.ReadValue();
		}