Provides some extensions for arrays.
Static member | Description | ||
Full Usage:
ArrayExtensions.CloneDeep(array)
Parameters:
'T[]
-
The array to clone.
Returns: 'T[]
Cloned array, with each of the elements a clone from the original element.
|
Clones the array deep, i.e. the elements will be cloned for the new array.
|
||
Full Usage:
ArrayExtensions.CloneDeepNullable(array)
Parameters:
'T[]
-
The array to clone.
Returns: 'T[]
Cloned array, with each of the elements a clone from the original element.
|
Clones the array deep, i.e. the elements will be cloned for the new array. Here, elements which have a value of null are allowed.
|