在C#中,調用API中的CopyMemory()
函數可以使用DllImport
特性來導入kernel32.dll
,然后使用Marshal.Copy()
方法來實現內存拷貝。以下是一個示例:
首先,在代碼文件的頂部添加以下命名空間:
using System.Runtime.InteropServices;
然后,使用DllImport
特性導入kernel32.dll
,并聲明CopyMemory()
函數:
[DllImport("kernel32.dll", EntryPoint = "CopyMemory", SetLastError = false)]
public static extern void CopyMemory(IntPtr dest, IntPtr src, uint count);
接下來,可以在需要調用CopyMemory()
函數的地方使用以下代碼:
byte[] srcArray = { 1, 2, 3, 4, 5 };
byte[] destArray = new byte[srcArray.Length];
// 將源數組的內容復制到目標數組
GCHandle srcHandle = GCHandle.Alloc(srcArray, GCHandleType.Pinned);
GCHandle destHandle = GCHandle.Alloc(destArray, GCHandleType.Pinned);
CopyMemory(destHandle.AddrOfPinnedObject(), srcHandle.AddrOfPinnedObject(), (uint)srcArray.Length);
srcHandle.Free();
destHandle.Free();
// 打印目標數組的內容
foreach (byte b in destArray)
{
Console.WriteLine(b);
}
在上面的示例中,首先創建了源數組srcArray
和目標數組destArray
。然后,使用GCHandle.Alloc()
方法將數組固定在內存中,以獲取數組的內存地址。接下來,調用CopyMemory()
函數將源數組的內容復制到目標數組。最后,使用GCHandle.Free()
方法釋放通過GCHandle.Alloc()
方法獲取的內存地址。
注意:由于CopyMemory()
函數是將源數組的內容直接復制到目標數組中,因此請確保目標數組的長度足夠大以容納源數組的內容,以避免訪問越界錯誤。