Kaixuan
Results
2
comments of
Kaixuan
I added these three lines to fix this issue. ```csharp private void SkipSpace() { while (HasValue()) { char c = Character(); // whitespace; fine to skip if (char.IsWhiteSpace(c)) { TryMoveNext();...
遇到同样的问题