Click or drag to resize
SetTClone Method
Makes a shallow clone of this set; i.e., if items of the set are reference types, then they are not cloned. If T is a value type, then each element is copied as if by simple assignment.

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

Return Value

Type: SetT
The cloned set.
Remarks
Cloning the set takes time O(N), where N is the number of items in the set.
See Also