protected bool WordIsIgnored(string word)
 {
     return(String.IsNullOrEmpty(word) ||
            word.Length < MinWordSize ||
            SpellCheckResources.IsIgnoredInsensitive(word) ||
            CStyleFreeTextParser.LooksLikeCodeWord(word));
 }
Esempio n. 2
0
 protected virtual bool IsIgnored(string text)
 {
     return(String.IsNullOrEmpty(text) ||
            text.Length <= MinWordSize ||
            SpellCheckResources.IsIgnoredInsensitive(text));
 }