分类目录

链接

2012 年 5 月
 123456
78910111213
14151617181920
21222324252627
28293031  

近期文章

热门标签

新人福利,免费薅羊毛

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,238)