ILNumerics Ultimate VS

ArrayT  Conversion (InArrayT to ArrayT)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Convert input array (immutable) to local array (mutable).

[ILNumerics Core Module]

Namespace:  ILNumerics
Assembly:  ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax

public static implicit operator Array<T> (
	InArray<T> A
)

Parameters

A
Type: ILNumericsInArrayT
Input array

Return Value

Type: ArrayT
Local mutable array with lifespan corresponding to the current scope.
Remarks

The new array is detached from the source array A. The new array can get used multiple times in the function scope and get altered without modifying the source array A.

[ILNumerics Core Module]

See Also

Reference