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

IsThirdPersonSingularVerb() public method

Indicates whether the given word is a verb in third person singular tense.
public IsThirdPersonSingularVerb ( string word ) : bool
word string The word to test.
return bool
        public override bool IsThirdPersonSingularVerb(string word)
        {
            return VerbsThirdPersonSingular.Contains(word.ToLower());
        }