MyC.Io.getNextChar C# (CSharp) Method

getNextChar() public method

public getNextChar ( ) : char
return char
public char getNextChar()
  {
  return look;
  }

Usage Example

        void outerDecl()
        {
            Var e = new Var();

#if DEBUG
            Console.WriteLine("outerDecl token=[" + tok + "]\n");
#endif

            CommentHolder(); /* mark the position in insn stream */

            dataClass(e);
            dataType(e);

            if (io.getNextChar() == '(')
            {
                declFunc(e);
            }
            else
            {
                declOuter(e);
            }
        }
All Usage Examples Of MyC.Io::getNextChar