/// <summary>
 /// Adds the specified element to this set if it is not already present.
 /// </summary>
 /// <param name="value"></param>
 /// <returns></returns>
 public bool Add(object value)
 {
     return(_array.AddIfAbsent(value));
 }