描述:
1.创建一个C++调用C#方法的DLL,在这个C++ DLL中,配置如下:
Use of MFC: Use Standard Windows Libraries
Common Language Runtime Support: Common Language Runtime Support/clr
.NET Target Framework Version: 4.5.2
C/C++->General->Common .. Support: Common Language Runtime Sup+port/clr
Enable Function-Level Linking: No(/Gy-)
C#类名CSharpText,命名空间CSharpTextNamespace
在C++ DLL中写了
#using "..\CSharpText.dll"
using namespace System;
using namespace System::Runtime::InteropServices;
using namespace CSharpTextNamespace;
C++ DLL通过COM暴露了一个接口,ConnectTOCSharp,其中创建C#对象
CSharpText ^ text = gcnew CSharpText;
2.现在由一个C++的ocx调用1中的C++ DLL,采用COM调用
CComPtr pICSharpText;
CoCreateInstance(CLSID_CSharpText,nullptr,CLSCTX_INPROC_SERVER,IID_ICSharpText,(void**)&pICSharpText;
pICSharpText->ConnectTOCSharp();
说明:
调用DLL的ocx属于非托管C++,且其中配置如下:
Use of MFC:Use MFC in a shared DLL
Ignore Import Library:Yes
3.问题产生在2中的pICSharpText->ConnectTOCSharp();,
COM连接成功,C++ Dll中创建gcnew时 Crash,提示:
Unhandled exception at 0xXXXXXX(KernelBase.dll) in XX.exe: 0xE0434352
4.求教如何创建和调用C#对象及接口,才不会出现上面问题?谢谢