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

Error() private method

private Error ( string message ) : int
message string
return int
        private int Error(string message)
        {
            Errors.Add(new Pair<int, string>(position, message));
            return Errors.Count;
        }
YamlParser