/// <summary>
 /// Removes the specified element from this set if it is present.
 /// </summary>
 /// <param name="obj"></param>
 public void Remove(object obj)
 {
     _array.Remove(obj);
 }