BcsResolver.Common.StringReader.Peek C# (CSharp) Метод

Peek() публичный Метод

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