ABB.Swum.WordData.PCKimmoPartOfSpeechData.IsSideEffectWord C# (CSharp) Метод

IsSideEffectWord() публичный Метод

Indicates whether the given word indicates that a method might have some side effect, e.g. log, notify, throw.
public IsSideEffectWord ( string word ) : bool
word string The word to test.
Результат bool
        public override bool IsSideEffectWord(string word)
        {
            return SideEffectWords.Contains(word.ToLower());
        }