RtlMoveMemory (ntdll)
Last changed: -91.231.84.41

.
Summary
TODO - a short description

C# Signature:

    [SuppressMessage("Microsoft.Security", "CA2118:ReviewSuppressUnmanagedCodeSecurityUsage")]
    [DllImport(ExternDll.Kernel32, SetLastError=true, ExactSpelling=true, EntryPoint="RtlMoveMemory", CharSet=System.Runtime.InteropServices.CharSet.Auto)]
    [ResourceExposure(ResourceScope.None)]
    public static extern void CopyMemory(HandleRef destData, HandleRef srcData, int size);

VB Signature:

    <SuppressMessage("Microsoft.Security", "CA2118:ReviewSuppressUnmanagedCodeSecurityUsage")>
    <DllImport("Ntdll.dll", SetLastError:=True, ExactSpelling:=True, EntryPoint:="RtlMoveMemory", CharSet:=System.Runtime.InteropServices.CharSet.Auto)>
    Public Shared Sub CopyMemory(ByVal destData As HandleRef, ByVal srcData As HandleRef, ByVal size As Integer)

    End Sub

User-Defined Types:

None.

Alternative Managed API:

Marshal.Copy();

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation