ABB.Swum.UnigramMethodRule.IsChecker C# (CSharp) 메소드

IsChecker() 보호된 메소드

Determines whether the given word indicates a checker method.
protected IsChecker ( string word ) : bool
word string The word to test.
리턴 bool
        protected bool IsChecker(string word)
        {
            if (word == null) { return false; }

            return PosData.IsThirdPersonSingularVerb(word) || PosData.IsThirdPersonIrregularVerb(word) || PosData.IsModalVerb(word);
        }