CopyMemory (urlmon)
Last changed: -180.214.232.93

.
Summary
TODO - a short description

C# Signature:

    [DllImport("kernel32.dll", EntryPoint="RtlMoveMemory")]
    static extern void CopyMemory(IntPtr Destination, IntPtr Source, uint Length);

C# Signature:

    [DllImport("kernel32.dll", EntryPoint="RtlMoveMemory")]
    static extern void CopyMemory(byte[] Destination, byte[] Source, uint Length);

VB.NET Signature:

    <DllImport("kernel32.dll", EntryPoint:="RtlMoveMemory")> _
    Friend Shared Sub CopyMemory(ByVal Destination As IntPtr, ByVal Source As IntPtr, ByVal Length As UInteger)
    End Sub

VB Signature:

    Declare Sub CopyMemory Alias "RtlMoveMemory" Lib "kernel32.dll" (hpvDest As Any, hpvSource As Any, ByVal cbCopy As Long)

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation
CopyMemory on MSDN