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

ParseNonSpaceChar() private method

private ParseNonSpaceChar ( bool &success ) : char
success bool
return char
        private char ParseNonSpaceChar(out bool success)
        {
            int errorCount = Errors.Count;
            char ch = MatchTerminalSet(" \t\r\n", true, out success);
            if (success) { ClearError(errorCount); }
            else { Error("Failed to parse -\" \t\r\n\" of NonSpaceChar."); }
            return ch;
        }
YamlParser