ABB.Swum.UnigramMethodRule.IsNonBaseVerb C# (CSharp) Метод

IsNonBaseVerb() защищенный Метод

Determines whether the given word is a non-base verb, i.e. present/past participle or past tense.
protected IsNonBaseVerb ( string word ) : bool
word string The word to test.
Результат bool
        protected bool IsNonBaseVerb(string word)
        {
            if (word == null) { return false; }

            return PosData.IsPresentParticiple(word) //-ing
                || PosData.IsPastTense(word) //-ed
                || PosData.IsPastParticiple(word); //-en
        }