예제 #1
0
파일: InputTesting.cs 프로젝트: jmclain/Nmp
		/////////////////////////////////////////////////////////////////////////////

		private void FileRead( string fileName )
		{
			// ******
			string text = File.ReadAllText( fileName );
			ParseStringReader reader = new ParseStringReader( text );

			// ******
			while( !reader.AtEnd ) {
				char ch = reader.Next();

				Console.Write( ch );
			}

			// ******
			Console.Write( "\n\n\n" );
		}
예제 #2
0
파일: JSONParser.cs 프로젝트: jmclain/Nmp
		/////////////////////////////////////////////////////////////////////////////

		public JSONParser( JSONItemHandler handler, string text )
		{
			// ******
			this.handler = handler;
			reader = new ParseStringReader( text, "json text" );

			// ******
			ValidationRun = false;
			LastIdentifier = string.Empty;
			LastValue = null;
		}