我是否正确地调用了这个C ++ DLL?

时间:2012-03-01 10:29:24

标签: c# dll types dllimport

我需要从C#调用C ++ DLL函数,C ++函数定义是

DWORD Init(char*[],int,int,int);

我在C#中调用它就像这样

[DllImport("DLLTest.dll")]
unsafe public static extern int Init(string[] detailsarray, int amount, int ID1, int ID2);

//then in main...

string[] details = new string[3];
details[0] = "blahblah";
details[1] = "bloobloo";
details[2] = "1234";

int result = Init(details, 1, 16, 170);

当我运行它时,我得到System.BadImageFormatException类型的未处理异常。我相信当C ++ DLL期待char *时可以通过字符串,我也认为在C#中使用int代替C ++中的DWORD是可以的,但是如果我是正确的请告诉我。

感谢。

编辑 - 我应该补充一下,我已经在C ++应用程序中测试了DLL,它运行正常。

1 个答案:

答案 0 :(得分:4)

如果您尝试将32位DLL加载到64位进程中,则通常会发生BadImageFormatException,反之亦然。如果DLLTest.dll是32位DLL,则需要为x86平台编译C#DLL,而不是任何CPU

http://msdn.microsoft.com/en-us/library/zekwfyz4(v=vs.100).aspx

http://davidstechtips.com/wp-content/uploads/2010/06/VisualStudioPlatformTargetx86.png