Constructs a thread-safe ISet wrapper.

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

Syntax

C#
public SynchronizedSet(
	ISet basisSet
)
Visual Basic
Public Sub New ( _
	basisSet As ISet _
)
Visual C++
public:
SynchronizedSet(
	ISet^ basisSet
)

Parameters

basisSet
Type: Iesi.Collections..::..ISet
The ISet object that this object will wrap.

See Also