The ZeroMemory routine fills a block of memory with zeros, given a pointer to the block and the length, in bytes, to be filled.
Namespace:
Math.Gmp.Native
Assembly:
Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public static void ZeroMemory(
IntPtr dst,
int length
)
Public Shared Sub ZeroMemory (
dst As IntPtr,
length As Integer
)
public:
static void ZeroMemory(
IntPtr dst,
int length
)
static member ZeroMemory :
dst : IntPtr *
length : int -> unit
Parameters
- dst
- Type: SystemIntPtr
A pointer to the memory block to be filled with zeros. - length
- Type: SystemInt32
The number of bytes to fill with zeros.
See Also