iTextSharp.text.pdf.PRTokeniser.IsDelimiter C# (CSharp) Method

IsDelimiter() public static method

public static IsDelimiter ( int ch ) : bool
ch int
return bool
        public static bool IsDelimiter(int ch) {
            return (ch == '(' || ch == ')' || ch == '<' || ch == '>' || ch == '[' || ch == ']' || ch == '/' || ch == '%');
        }