文件名称:PB12+ C# 2010 dll 调用 源代码
文件大小:36KB
文件格式:RAR
更新时间:2021-10-22 05:39:55
C# PB12 DLL
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices; //该引用必须 namespace PB_tests { [Guid("8C4FAF54-1484-4C86-B734-1B6441C4892E")] //利用GUID生成器随机生成,大家上网查如何生成,必须 public interface CallParamers { [DispId(1)] string PBCAll(string hm, DateTime fssj, ref int result); } [Guid("44490EDD-582C-4618-9831-81C2237C7759")] //利用GUID生成器随机生成,大家上网查如何生成,必须 [ClassInterface(ClassInterfaceType.None)] public class Class1 : CallParamers { public string PBCAll(string hm, DateTime fssj, ref int result) { int hm_retrun = 0; string message = "调用测试开始"; result = 0; if (hm == "0") { message = "请传入正确的号码"; } else { if (int.TryParse(hm.ToString(), out hm_retrun)) { message = "成功获取号码:" + hm_retrun; string strings = hm + " " + fssj; result = 1; } else { message = "传入的号码格式有误:" + hm; result = 0; } } return message; } } }
【文件预览】:
PB12+C#2010_DLL.Test OK
----f.exe(40KB)
----f.pbt(89B)
----regasm cpb_test.dll.txt(67B)
----f.usr.opt(490B)
----wwww.pbw(143B)
----f.pbl(22KB)
----PB_test()
--------PB_test.sln(911B)
--------PB_test.suo(15KB)
--------PB_test()