ILNumerics - Technical Application Development
Assembly: ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
Element value.
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
Parameters
- A
- Type: ILNumericsBaseArrayUInt64
The array instance. - d0
- Type: SystemUInt32
Index into the first dimension or sequential index into the array.
Return Value
Type: UInt64Element value.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type BaseArrayUInt64. 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
Exception | Condition |
---|---|
IndexOutOfRangeException | if 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