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

IsPrefix() private method

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