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: AltaxoAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax 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
IEnumerableTOutput enumeration with cloned members of the input enumeration.
See Also