Click or drag to resize
SetT Constructor (IEnumerableT)
Creates a new Set. The Equals method and GetHashCode method on T will be used to compare items for equality.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public Set(
	IEnumerable<T> collection
)

Parameters

collection
Type: System.Collections.GenericIEnumerableT
A collection with items to be placed into the Set.
Remarks
Items that are null are permitted.
See Also