ILNumerics Ultimate VS

ExtensionMethodsGetValueT Method (BaseArrayBaseArray, InArrayInt64)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Retrieves the value of the element addressed by the index array indices. Supports deep indexing.

[ILNumerics Core Module]

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

public static T GetValue<T>(
	this BaseArray<BaseArray> A,
	InArray<long> indices
)

Parameters

A
Type: ILNumericsBaseArrayBaseArray
The cell instance.
indices
Type: ILNumericsInArrayInt64
Index array addressing the element to be retrieved.

Type Parameters

T

Return Value

Type: T
Copy/clone of the elements value. Scalar values are wrapped into a scalar array.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type BaseArrayBaseArray. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions

ExceptionCondition
ArgumentExceptionIf indices is null or have 0 or more than 7 elements.
Remarks

[ILNumerics Core Module]

See Also

Reference