标签: c# .net com interop iis-8
我在.NET库中调用C库方法,如下所示。
[DllImport(@"abc.dll",CallingConvention=CallingConvention.Cdecl)] private static extern unsafe int DoSomething(
使用DoSomething()
DoSomething()
这两个都被加载到w3wp,因为它们是web项目的一部分。由于C库中存在一些异常,整个工作进程正在崩溃。
无论如何在C#类中处理这个我调用C方法吗?