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

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

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