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());
        }