/// <summary>
 /// Determines whether the CopyOnWriteArraySet contains a specific value.
 /// </summary>
 /// <param name="value">The Object to locate in the CopyOnWriteArraySet.</param>
 /// <returns>true if the Object is found in the CopyOnWriteArraySet; otherwise, false.</returns>
 public bool Contains(object value)
 {
     return(_array.Contains(value));
 }