Пример #1
0
 /// <summary>
 /// Remove any whitespace characters that are next in the InputStream.
 /// </summary>
 protected void EatWhitespace()
 {
     while (char.IsWhiteSpace((char)_source.Peek()))
     {
         _source.Read();
     }
 }