Pytocs.Syntax.Lexer.Invalid C# (CSharp) Méthode

Invalid() private static méthode

private static Invalid ( int c, char ch ) : FormatException
c int
ch char
Résultat System.FormatException
        private static FormatException Invalid(int c, char ch)
        {
            throw new FormatException(string.Format("Invalid character '{0}' (U+{1:X4}).", ch, c));
        }