FreeImage.CompareMemory Method (Void*, Void*, Int64)

FreeImage.NET

FreeImageCompareMemory Method (Void, Void, Int64)
Compares blocks of memory.

Namespace: FreeImageAPI
Assembly: FreeImageNET (in FreeImageNET.dll) Version: 3.17.0.4 (3.17.0)
Syntax
C#
public static bool CompareMemory(
	void* buf1,
	void* buf2,
	long length
)

Parameters

buf1
Type: SystemVoid*
A pointer to a block of memory to compare.
buf2
Type: SystemVoid*
A pointer to a block of memory to compare.
length
Type: SystemInt64
Specifies the number of bytes to be compared.

Return Value

Type: Boolean
true, if all bytes compare as equal, false otherwise.
See Also