YamlUtility.Grammar.YamlParser.ParseSpace C# (CSharp) Method

ParseSpace() private method

private ParseSpace ( bool &success ) : char
success bool
return char
        private char ParseSpace(out bool success)
        {
            int errorCount = Errors.Count;
            char ch = MatchTerminal(' ', out success);
            if (success) { ClearError(errorCount); }
            else { Error("Failed to parse ' ' of Space."); }
            return ch;
        }
YamlParser