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

Namespace:  FreeImageAPI
Assembly:  FreeImageNET (in FreeImageNET.dll)

Syntax

C#
public T this[
	int index
] { get; set; }
Visual Basic (Declaration)
Public Default Property Item ( _
	index As Integer _
) As T
Visual C++
public:
property T default[int index] {
	T get (int index);
	void set (int index, T value);
}

Parameters

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

Return Value

The value at the specified position in the array.

Exceptions

ExceptionCondition
System..::.ArgumentOutOfRangeException index is outside the range of valid indexes for the unmanaged array.

Version Information

FreeImage.NET

Supported in: 3.11.0, 3.12.0, 3.13.0, 3.13.1

See Also