Kernel32ZeroMemory(UIntPtr, UInt32) Method

Fills a block of memory with zeros.

Definition

Namespace: DevCase.Win32.NativeMethods
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("Kernel32.dll", SetLastError = true)]
public static void ZeroMemory(
	UIntPtr address,
	uint size
)

Parameters

address  UIntPtr
A pointer to the starting address of the block of memory to fill with zeros.
size  UInt32
The size of the block of memory to fill with zeros, in bytes.

Remarks

See Also