Exemple #1
0
        public void Next()
        {
            char ch2 = reader.ReadChar();

            //lineCharWidths.Add(chWidth);
            Widther.Append(ch2);
        }
Exemple #2
0
 public char Next()
 {
     col++;
     if (ch == '\t')
     {
         col += 3;
     }
     return(reader.ReadChar());
 }