CSReportDll.cReportCompiler.pIsFunctionAux C# (CSharp) Method

pIsFunctionAux() private method

private pIsFunctionAux ( String word, String &functionName ) : bool
word String
functionName String
return bool
        private bool pIsFunctionAux(String word, ref String functionName)
        {
            if (!pIsFunction(word)) { return false; }
            functionName = word;
            return true;
        }