ABB.Swum.SamuraiIdSplitter.IsSuffix C# (CSharp) Method

IsSuffix() private method

Checks whether the supplied word is a known suffix.
private IsSuffix ( string word ) : bool
word string The word to check.
return bool
        private bool IsSuffix(string word)
        {
            return Suffixes.Contains(word.ToLower());
        }