在C#中怎么通过P/Invoke调用.dll
答案:1 悬赏:20 手机版
解决时间 2021-04-01 20:23
- 提问者网友:沉默菋噵
- 2021-04-01 01:41
在C#中怎么通过P/Invoke调用.dll
最佳答案
- 五星知识达人网友:独行浪子会拥风
- 2021-04-01 02:34
可以通过反射调用dll里的属性和方法。
Assembly sb = Assembly.Load("dll name");
object obj=sb.CreateInstance("class name");
//调用没有参赛的方法
object result=obj.GetType().GetMethod("method name").Invoke(obj,null);
Assembly sb = Assembly.Load("dll name");
object obj=sb.CreateInstance("class name");
//调用没有参赛的方法
object result=obj.GetType().GetMethod("method name").Invoke(obj,null);
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯