private bool IsUninflective(string word)
 {
     //EDesignUtil.CheckArgumentNull<string>(word, "word");
     if (PluralizationServiceUtil.DoesWordContainSuffix(word, _uninflectiveSuffixList, this.Culture) ||
         (!word.ToLower(this.Culture).Equals(word) && word.EndsWith("ese", false, this.Culture)) ||
         this._uninflectiveWordList.Contains(word.ToLowerInvariant()))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }