Foley .NET Utilities Class Library

HashSet Constructor (ICollection, Int32)

Initializes a new instance of the HashSet class that contains elements copied from the specified collection with the specified initial capacity and using the specified load factor, the default hash code provider and the default comparer.

[Visual Basic]
Overloads Public Sub New( _
   ByVal collection As ICollection, _
   ByVal initialCapacity As Integer _
)
[C#]
public HashSet(
   ICollection collection,
   int initialCapacity
);

Parameters

collection
The ICollection whose elements are copied to the new list.
initialCapacity
The approximate number of elements that the HashSet can initially contain.

Exceptions

Exception TypeCondition
System.ArgumentOutOfRangeExceptioncapacity is less than zero.

See Also

HashSet Class | HashSet Members | Foley.Utilities.Collections Namespace | HashSet Constructor Overload List