public IntegerKeyedStringCollection Add(string key)
        {
            IntegerKeyedStringCollection stringCollection = new IntegerKeyedStringCollection();

            Dictionary.Add(key.ToLower(), stringCollection);
            return(stringCollection);
        }
 public void Add(string key, IntegerKeyedStringCollection col)
 {
     Dictionary.Add(key.ToLower(), col);
 }