Creates a new set instance based on either a list or a hash table, depending on which will be more efficient based on the data-set size, and initializes it based on a collection of elements.

Namespace: Iesi.Collections
Assembly: Iesi.Collections (in Iesi.Collections.dll) Version: 1.0.1.0 (3.2.0.4000)

Syntax

C#
public HybridSet(
	ICollection initialValues
)
Visual Basic
Public Sub New ( _
	initialValues As ICollection _
)
Visual C++
public:
HybridSet(
	ICollection^ initialValues
)

Parameters

initialValues
Type: System.Collections..::..ICollection
A collection of elements that defines the initial set contents.

See Also