Class DeepCopy
Collection of utility functions for one-line deep copies of lists
Inherited Members
Namespace: g3
Assembly: cs.temp.dll.dll
Syntax
public static class DeepCopy
Methods
Array<T>(IEnumerable<T>)
Declaration
public static T[] Array<T>(IEnumerable<T> Input)
where T : IDuplicatable<T>
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<T> | Input |
Returns
Type | Description |
---|---|
T[] |
Type Parameters
Name | Description |
---|---|
T |
List<T>(IEnumerable<T>)
Declaration
public static List<T> List<T>(IEnumerable<T> Input)
where T : IDuplicatable<T>
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<T> | Input |
Returns
Type | Description |
---|---|
List<T> |
Type Parameters
Name | Description |
---|---|
T |