BcsResolver.Common.StringReader.Peek C# (CSharp) Method

Peek() public method

Returns the char at the cursor, or Char.Zero, if we are on the end of file.
public Peek ( ) : char
return char
        public char Peek()
        {
            if (Position < text.Length)
            {
                return text[Position];
            }
            return NullChar;
        }