在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
Delphi调用C# 编写dll动态库 编写C#dll的方法都一样,首先在vs2005中创建一个“类库”项目WZPayDll, using System.Runtime.InteropServices; namespace WZPayDll { public interface IWZPay { void Pay(stirng url,string payType); } [ClassInterface(ClassInterfaceType.None)] public class WZPay:IWZPay { public void YourProcedure (stirng url,string payType); { //something is here,myself code } } }
将图中红框的地方选中,然后
然后在生成栏目中选中红框的为com互操作注册 接下来需要注册dll, 使用regasm.exe注册即可,为了方便注册,我们需要组一个批处理,要双击即可, @echo off start regasm2.0_x86.exe WZPayDll.dll exit
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论