c#调用c程序dll

c程序做成dll后,用C#做了个界面。如何在c#中调用dll。未成功调用可以捕捉异常吗?怎样捕捉?

C#调用dll有了P/Invoke,调用简直太简单了。

http://blog.csdn.net/xinyaping/article/details/7288325?reload 这里详细描述。


[DllImport("IAPengiCore.dll")]
private static extern void IapEngiMain();

[DllImport("IAPengiCore.dll")]
private static extern int IapReturnRunStat();

[DllImport("IAPengiCore.dll")]
private static extern int IapReturnRedundantStat();

[DllImport("IAPengiCore.dll")]
private static extern int IapReturnMasterStat();

这样就可以直接用以上的四个函数名进行调用了,加上命名空间:using System.Runtime.InteropServices;,另外我的dll中创建了N个线程,遇到界面退出后,任务管理器仍然还显示进程在运行,这是结束方法:在界面退出函数里面写上Process.GetCurrentProcess().Kill();这个的命名空间在:using System.Diagnostics;


最后一个问题是,在调用过程中找不到dll或者调用失败怎么捕捉异常,我例子中找不到dll则退出,如何捕捉异常?

你可能感兴趣的:(c#调用c程序dll)