Pytocs.Syntax.Lexer.Invalid C# (CSharp) Метод

Invalid() приватный статический Метод

private static Invalid ( int c, char ch ) : FormatException
c int
ch char
Результат System.FormatException
        private static FormatException Invalid(int c, char ch)
        {
            throw new FormatException(string.Format("Invalid character '{0}' (U+{1:X4}).", ch, c));
        }