Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

memcpy (msvcrt)
 
.
Summary
Copies count bytes of src to dest. If the source and destination overlap, the behavior of memcpy is undefined. Use memmove to handle overlapping regions.

C# Signature:

[DllImport("msvcrt.dll", EntryPoint = "memcpy", CallingConvention = CallingConvention.Cdecl, SetLastError = false)]
public static extern IntPtr memcpy(IntPtr dest, IntPtr src, UIntPtr count);

VB.NET Signature:

    <DllImport("msvcrt.dll", EntryPoint:="memcpy", CallingConvention:=CallingConvention.StdCall)> _
    Public Sub CopyMemory(ByVal dest As IntPtr, ByVal src As IntPtr, ByVal count As Integer)
    End Sub

VB Signature:

Declare Function memcpy Lib "msvcrt.dll" (TODO) As TODO

Return Value:

The value of dest.

User-Defined Types:

None.

Alternative Managed API:

System.Buffer.BlockCopy, Marshal.Copy and Array.Copy provide similar services, but require one or two managed arrays instead of pointers.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

'Prima mi creo da un vettore di caratteri una area di memoria non gestita con la stringa "Ciao" quindi la copio in un altra area non gestita con MemCpy, e quindi la ritrasformo in un vettore di caratteri, che posso quindi convertire in una stringa !!! Provato e testato. Funziona. Salute a tutti. Andrea Casagrande.

<B>Imports System.Runtime.InteropServices</B>

    Sub Main()
    Dim managedArray1 As Char() = ("Ciao").ToCharArray
    Dim size As Integer = Marshal.SizeOf(managedArray1(0)) * managedArray1.Length
    Dim pnt1 As IntPtr = Marshal.AllocHGlobal(size)
    Dim pnt2 As IntPtr = Marshal.AllocHGlobal(size)
    Dim managedArray2(managedArray1.Length - 1) As Char
    Try
        Marshal.Copy(managedArray1, 0, pnt1, managedArray1.Length)
        '----MemCpy
        CopyMemory(pnt2, pnt1, size * 2)
        '----
        Marshal.Copy(pnt2, managedArray2, 0, managedArray2.Length)
    Finally
        Marshal.FreeHGlobal(pnt1)
        Marshal.FreeHGlobal(pnt2)
    End Try
    Dim value As String = New String(managedArray2)
    Console.WriteLine(">>" + value + "<<")

    End Sub

Documentation
memcpy on MSDN

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).

 
Access PInvoke.net directly from VS:
Terms of Use
Find References
Show Printable Version
Revisions