MemoryArray(T).SetValues Method

FreeImage.NET

MemoryArrayTSetValues Method
Sets the values at the specified position.

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

Parameters

values
Type: T
An array containing the new values for the specified elements.
index
Type: SystemInt32
A 32-bit integer that represents the position of the array elements to set.
Exceptions
ExceptionCondition
ArgumentNullExceptionvalues is a null reference (Nothing in Visual Basic).
ArgumentOutOfRangeExceptionindex is outside the range of valid indexes for the unmanaged array or values.Length is greater than the number of elements from index to the end of the array.
See Also