1
這是VB6代碼:如何在c#中使用vb6 copymemory?
Dim i As Long
CopyMemory fkey(0), pass(0), 4& * i
我知道CopyMemory(destination, source, length)
。但我不知道如何在C#中實現它。
我有一個空的long
陣列和一個帶有值的byte
數組。
來源:byte
數組。
目的地:long
數組。
如何在c#中使用CopyMemory
這兩個數組?