///--------------------------------------------------------------------------------
 ///--------------------------------------------------------------------------------
 /// <summary>This method removes an entry in the specified index from the collection.</summary>
 ///
 ///	<param name="index">Index of item to remove.</param>
 ///--------------------------------------------------------------------------------
 public void Remove(int index)
 {
     Remove(AllKeys.GetValue(index) as String);
 }