分类

链接

2025 年 1 月
 12345
6789101112
13141516171819
20212223242526
2728293031  

近期文章

热门标签

新人福利,免费薅羊毛

Delphi如何调用C#写的dll

近来,因工作需要,必须解决Delphi7写的主程序调用C#写的dll的问题。在网上一番搜索,又经过种种试验,最终证明有以下两种方法可行: 编写C#dll的方法都一样,首先在vs2005中创建一个“类库”项目TestDll, using System.Runtime.InteropServices; namespace TestDll { public   interface  I TestClass { void YourProcedure(stirng param1); } [ClassInterface(ClassInterfaceType.None)] public   class TestClass:I TestClass { public void YourProcedure (stirng param1); {    //自己的代码    } } } 完成之...

.NET 暂无评论 阅读(5,276)