MemoryArray(T).GetValue Method

FreeImage.NET

MemoryArrayTGetValue Method
Gets the value at the specified position.

Namespace: FreeImageAPI
Assembly: FreeImageNET (in FreeImageNET.dll) Version: 3.17.0.4 (3.17.0)
Syntax
C#
public T GetValue(
	int index
)

Parameters

index
Type: SystemInt32
A 32-bit integer that represents the position of the array element to get.

Return Value

Type: T
The value at the specified position.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is outside the range of valid indexes for the unmanaged array.
See Also