ABB.Swum.SamuraiIdSplitter.IsSuffix C# (CSharp) Метод

IsSuffix() приватный Метод

Checks whether the supplied word is a known suffix.
private IsSuffix ( string word ) : bool
word string The word to check.
Результат bool
        private bool IsSuffix(string word)
        {
            return Suffixes.Contains(word.ToLower());
        }