ILNumerics Ultimate VS

DeviceGetValueT Method

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Read a single value of type T from the memory position handle on this device.

[ILNumerics Core Module]

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

public abstract T GetValue<T>(
	MemoryHandle handle,
	ulong index
)
where T : struct, new()

Parameters

handle
Type: ILNumerics.Core.MemoryLayerMemoryHandle
Memory handle to the memory containing the value to be retrieved.
index
Type: SystemUInt64
The index of the first element of type T to retrieve relative to the start of the memory region referenced by handle.

Type Parameters

T
The type of the value to read. Must derive from ValueType.

Return Value

Type: T
The value read from the memory address.
Remarks

[ILNumerics Core Module]

See Also

Reference