CSReportDll.cReportCompiler.pIsSeparator C# (CSharp) Method

pIsSeparator() private method

private pIsSeparator ( String c ) : bool
c String
return bool
        private bool pIsSeparator(String c)
        {
            return " |:+()/-*=\r\n".IndexOf(c, 0) > -1 && c != "";
        }