protected internal virtual int Sum(string word)
        {
            TagCount count = dict[word];

            if (count != null)
            {
                return(count.Sum());
            }
            return(0);
        }