Click or drag to resize

CopyHelperGetEnumerationMembersNotNullClonedT Method

Gets the members of the input enumeration cloned as output enumeration. Here, only those entries of the input enumeration, which are not null, are cloned and returned in the output enumeration.

Namespace: Altaxo
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static IEnumerable<T> GetEnumerationMembersNotNullCloned<T>(
	IEnumerable<T> toClone
)
where T : class, ICloneable

Parameters

toClone  IEnumerableT
Input enumeration.

Type Parameters

T
Type of the enumeration members.

Return Value

IEnumerableT
Output enumeration with cloned members of the input enumeration.
See Also