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));
        }