Kernel32ZeroMemory(IntPtr, UIntPtr) 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(
	IntPtr address,
	UIntPtr size
)

Parameters

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

Remarks

See Also