MemoryArray(T).GetValues Method

FreeImage.NET

MemoryArrayTGetValues Method
Gets the values at the specified position and length.

Namespace: FreeImageAPI
Assembly: FreeImageNET (in FreeImageNET.dll) Version: 3.17.0.4 (3.17.0)
Syntax
C#
public T[] GetValues(
	int index,
	int length
)

Parameters

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

Return Value

Type: T
The values at the specified position and length.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is outside the range of valid indexes for the unmanaged array or length is greater than the number of elements from index to the end of the unmanaged array.
See Also