Constructs an immutable (read-only) Set wrapper.

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

Syntax

C#
public ImmutableSet(
	ISet<T> basisSet
)
Visual Basic
Public Sub New ( _
	basisSet As ISet(Of T) _
)
Visual C++
public:
ImmutableSet(
	ISet<T>^ basisSet
)

Parameters

basisSet
Type: Iesi.Collections.Generic..::..ISet<(Of <(<'T>)>)>
The Set that is wrapped.

See Also