MemoryArray(T).SetValue Method

FreeImage.NET

MemoryArrayTSetValue Method
Sets a value to the element at the specified position.

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

Parameters

value
Type: T
The new value for the specified element.
index
Type: SystemInt32
A 32-bit integer that represents the position of the array element to set.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is outside the range of valid indexes for the unmanaged array.
See Also