我需要通过dllimport调用c ++方法。只要c ++方法中没有以下两个参数,一切正常:
const void * key,
void * out
我想我需要整理他们。但它是如何工作的? 键应该是指向字节数组的指针,out参数也是一个长度为16的字节数组。
在尝试Jcl建议之后,我有以下内容:
使用第一种方法(使用out [byte out]),程序崩溃而没有错误(到达呼叫点时)。 但是使用第二种方式(来自Jcl的评论),我有以下内容:
[DllImport(@"MyDLL.dll", SetLastError = true)]
public static extern void MyMethod(IntPtr key, out IntPtr outprm);
private void button1_Click(object sender, EventArgs e)
{
byte[] hash = new byte[16];
byte[] myArray = new byte[] { 1, 2, 3 };
IntPtr outprm = Marshal.AllocHGlobal(hash.Length);
IntPtr key = Marshal.AllocHGlobal(myArray.Length);
Marshal.Copy(myArray, 0, key, myArray.Length);
MyMethod(key, out outprm);
Marshal.Copy(outprm, hash, 0, 16);
Marshal.FreeHGlobal(key);
}
现在调用MyMethod时没有错误。我尝试复制数据时遇到以下错误:AccessViolationException
它说我要写入受保护的内存。 dll和c#软件是x64(需要是x64)。也许这就是我的原因?
答案 0 :(得分:4)
使用IntPtr
同时输入密钥和输出,例如:
[DllImport ("whatever.dll")]
public static extern void MyMethod(IntPtr key, IntPtr outprm);
要使key
成为IntPtr,将myArray
作为字节数组:
IntPtr key = Marshal.AllocHGlobal(myArray.Length);
Marshal.Copy(myArray, 0, key, myArray.Length);
// ... call your function ...
Marshal.FreeHGlobal(key );
从outprm
获取16字节数组:
IntPtr outprm;
MyMethod(key, outprm);
byte [] myArray = new byte[16];
Marshal.Copy(outprm, myArray, 0, 16);