ABB.Swum.SamuraiIdSplitter.IsPrefix C# (CSharp) Méthode

IsPrefix() private méthode

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