ReadChar() public method

public ReadChar ( ) : void
return void
Exemplo n.º 1
0
Arquivo: tok.cs Projeto: ydunk/masters
 void skipWhite()
 {
     while (Char.IsWhiteSpace(io.getNextChar()))
     {
         io.ReadChar();
     }
 }
Exemplo n.º 2
0
Arquivo: tok.cs Projeto: ydunk/masters
 public Tok(Io ihandle)
 {
     io = ihandle;
     InitHash();         // initialize the tokens hashtable
     io.ReadChar();
     scan();
 }
Exemplo n.º 3
0
 public Tok(Io ihandle)
   {
   io = ihandle;
   InitHash();			// initialize the tokens hashtable
   io.ReadChar();
   scan();
   }