CSReportDll.cReportCompiler.pIsFunction C# (CSharp) Méthode

pIsFunction() private méthode

private pIsFunction ( String word ) : bool
word String
Résultat bool
        private bool pIsFunction(String word)
        {
            cReportFormulaType f = null;

            for (int _i = 0; _i < m_formulaTypes.count(); _i++)
            {
                f = m_formulaTypes.item(_i);
                if (word.ToLower() == f.getName().ToLower())
                {
                    return true;
                }
            }
            return false;
        }