MemoryArray(T).Item Property

FreeImage.NET

MemoryArrayTItem Property
Gets or sets the value at the specified position in the array.

Namespace: FreeImageAPI
Assembly: FreeImageNET (in FreeImageNET.dll) Version: 3.17.0.4 (3.17.0)
Syntax
C#
public T this[
	int index
] { get; set; }

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 in the array.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is outside the range of valid indexes for the unmanaged array.
See Also