ABB.Swum.WordData.PCKimmoPartOfSpeechData.IsThirdPersonIrregularVerb C# (CSharp) Method

IsThirdPersonIrregularVerb() public method

Indicates whether the given word is an irregular third person singular verb.
public IsThirdPersonIrregularVerb ( string word ) : bool
word string The word to test.
return bool
        public override bool IsThirdPersonIrregularVerb(string word)
        {
            return VerbsThirdPersonIrregular.Contains(word.ToLower());
        }