ILNumerics Ultimate VS

ExtensionMethodsGetValue Method (BaseArrayByte, UInt32)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Retrieves the value of the element at the position specified by d0.

[ILNumerics Core Module]

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

public static byte GetValue(
	this BaseArray<byte> A,
	uint d0
)

Parameters

A
Type: ILNumericsBaseArrayByte
The array instance.
d0
Type: SystemUInt32
Index into the first dimension or sequential index into the array.

Return Value

Type: Byte
Element value.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type BaseArrayByte. 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
IndexOutOfRangeExceptionif the value of d0 exceeds the NumberOfElements of A.
Remarks

This functions retrieves the value of the element at sequential index d0. Note that the index provided in d0 does not correspond with the storage position of the element to retrieve. This would only be true for special cases of storage layout and dimension numbers. For arbitrary storage layouts both are likely to differ.

[ILNumerics Core Module]

See Also

Reference