protected bool WordIsIgnored(string word)
 {
     return(String.IsNullOrEmpty(word) ||
            word.Length < MinWordSize ||
            SpellCheckResources.IsIgnoredInsensitive(word) ||
            CStyleFreeTextParser.LooksLikeCodeWord(word));
 }