EEFileLoadException when using C# classes in C++(win32 app)

前端 未结 6 846
闹比i
闹比i 2020-12-05 13:25

For deployment reasons, I am trying to use IJW to wrap a C# assembly in C++ instead of using a COM Callable Wrapper.

I\'ve done it on other projects, but on this o

6条回答
  •  北荒
    北荒 (楼主)
    2020-12-05 14:13

    When you run in debugger C++ native project which use C++ managed dll you may get this exception. When VS2010 catch it and your application after some chain exceptions will be aborted you may try in exception filter (Menu|Debug|Excpetion) disable all C++ exceptions. You will still see this exception in output but your application won't abort

提交回复
热议问题