Print() 공개 메소드

public Print ( ) : void
리턴 void
예제 #1
0
파일: parser.cs 프로젝트: Belxjander/Asuna
		public void Print(SymbolSet x,string s)
		{
			Console.Write("Transition ("+m_ps.m_state+","+m_A.yytext+") "+s+" ");
			x.Print();
		}
예제 #2
0
파일: Transition.cs 프로젝트: m33p/radegast
 public void Print(SymbolSet x, string s)
 {
     Console.Write("Transition (" + (object)this.m_ps.m_state + "," + this.m_A.yytext + ") " + s + " ");
     x.Print();
 }