MemoryArray(T) Constructor (Void*, Int32)

FreeImage.NET

MemoryArrayT Constructor (Void, Int32)
Initializes a new instance of the MemoryArrayT class.

Namespace: FreeImageAPI
Assembly: FreeImageNET (in FreeImageNET.dll) Version: 3.17.0.4 (3.17.0)
Syntax
C#
public MemoryArray(
	void* baseAddress,
	int length
)

Parameters

baseAddress
Type: SystemVoid*
Address of the memory block.
length
Type: SystemInt32
Length of the array.
Exceptions
ExceptionCondition
ArgumentNullExceptionbaseAddress is null.
ArgumentOutOfRangeExceptionlength is less or equal zero.
NotSupportedException The type is not supported.
See Also