MatrixOpsCloneMatrixT Method |
Namespace: ANDREICSLIB.HelpersAssembly: ANDREICSLIB (in ANDREICSLIB.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static T[][] CloneMatrix<T>(
T[][] gridIN,
int widthI,
int heightI
)
where T : new()
Public Shared Function CloneMatrix(Of T As New) (
gridIN As T()(),
widthI As Integer,
heightI As Integer
) As T()()
public:
generic<typename T>
where T : gcnew()
static array<array<T>^>^ CloneMatrix(
array<array<T>^>^ gridIN,
int widthI,
int heightI
)
static member CloneMatrix :
gridIN : 'T[][] *
widthI : int *
heightI : int -> 'T[][] when 'T : new()
Parameters
- gridIN
- Type: T
- widthI
- Type: SystemInt32
- heightI
- Type: SystemInt32
Type Parameters
- T
Return Value
Type:
T
See Also