c#调用C接口时指针参数的接入

指针的接入有两种方式,

1.C#中的引用类型

2.C#中的指针实现

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;/// <summary>
    /// 离线UK操作类
    /// </summary>
    public unsafe class UK
    {
        //引用类型变量实现
        [DllImport("UK")]
        extern static int UniKey_Find(ref uint handle, ref uint s1, ref uint s2);

        [DllImport("UK")]
        extern static int UniKey_Logoff(ref uint handle);
        
        //[DllImport("UK")]
        //extern static int UniKey_Log_On_Secu(ref uint handle, ref char[] password);

        [DllImport("UK")]
        extern static int UniKey_Log_On_Secu(ref uint handle, char[] password);

        [DllImport("UK")]
        extern static int UniKey_Log_Out_Secu(ref uint handle);

        [DllImport("UK")]
        extern static int UniKey_Get_Com_PanFu(ref uint handdle, ref char pDriveName);


        //指针地址实现(不过要设置程序属性允许不安全代码)
        [DllImport("UK")]
        extern static int UniKey_Find(uint* handle, uint* s1, uint* s2);

        [DllImport("UK")]
        extern static int UniKey_Logoff(uint* handle);

        [DllImport("UK")]
        extern static int UniKey_Log_On_Secu(uint* handle, uint* password);

        [DllImport("UK")]
        extern static int UniKey_Log_Out_Secu(uint* handle);

        [DllImport("UK")]
        extern static int UniKey_Get_Com_PanFu(uint* handdle, char* pDriveName);

        /// <summary>
        /// 查找UKey
        /// </summary>
        /// <returns></returns>
        protected static int UKeyFind()
        {
            uint handle = 0;
            uint s1 = 0;
            uint s2 = 0;
            int result = UniKey_Find(ref handle, ref s1, ref s2);
            return result;
        }

        /// <summary>
        /// 退出Ukey
        /// </summary>
        /// <param name="handle"></param>
        /// <returns></returns>
        protected static int UKeyLogoff()
        {
            uint handle = 0;
            return UniKey_Logoff(ref handle);
        }

        /// <summary>
        /// 登陆Ukey
        /// </summary>
        /// <returns></returns>
        protected static int UKeyLogOnSecu()
        {
            uint handle = 0;
            char[] password = new char[6] { '1', '2', '3', '4', '5', '6' };
            int result = UniKey_Log_On_Secu(ref handle, password);
            return result;
        }

        /// <summary>
        /// 退出UKey
        /// </summary>
        /// <returns></returns>
        protected static int UKeyLogOutSecu()
        {
            uint handle = 0;
            return UniKey_Log_Out_Secu(ref handle);
        }}


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
CSharp 调用C++ DLL; 参数指针类型导出函数 c# Csharp调用 c++库 参数为导入和导出指针两种 包含C++ DLL源码 如fun(cont char* A,char*B) A为输入参数,B为输出参数-C# CSharp call C++ DLL lib dll function param use export and import eg: fun(cont char* A,char*B) A IN,B OUT TestDll\Debug\TestCallDll.exe .......\.....\TestCallDll.vshost.exe .......\.....\TestCallDll.vshost.exe.manifest .......\.....\TestDll.dll .......\.....\TestDll.lib .......\TestCallDll\Form1.cs .......\...........\Form1.Designer.cs .......\...........\Form1.resx .......\...........\obj\Debug\TestCallDll.csproj.FileListAbsolute.txt .......\...........\...\.....\TestCallDll.csproj.GenerateResource.Cache .......\...........\...\.....\TestCallDll.exe .......\...........\...\.....\TestCallDll.Form1.resources .......\...........\...\.....\TestCallDll.pdb .......\...........\...\.....\TestCallDll.Properties.Resources.resources .......\...........\Program.cs .......\...........\...perties\AssemblyInfo.cs .......\...........\..........\Resources.Designer.cs .......\...........\..........\Resources.resx .......\...........\..........\Settings.Designer.cs .......\...........\..........\Settings.settings .......\...........\TestCallDll.csproj .......\....Dll\dllmain.cpp .......\.......\ReadMe.txt .......\.......\stdafx.cpp .......\.......\stdafx.h .......\.......\targetver.h .......\.......\TestDll.cpp .......\.......\TestDll.def .......\.......\TestDll.h .......\.......\TestDll.vcproj .......\.......\TestDll.vcproj.PC-201008261742.Administrator.user .......\TestDll.sln .......\TestDll.suo .......\....CallDll\obj\Debug\TempPE .......\...........\...\Debug .......\...........\obj .......\...........\Properties .......\Debug .......\TestCallDll .......\TestDll TestDll
C#调用WebService接口传递参数,如果发生网络断开的情况,你可以使用一些方法来实现断网重传的功能。以下是一个简单的示例代码,用于演示如何实现断网重传: ```csharp using System; using System.Net; using System.Web.Services.Protocols; class Program { static void Main() { // 构造WebService代理对象 MyWebService myWebService = new MyWebService(); // 设置断网重传的次数 int retryCount = 3; int currentRetry = 0; bool success = false; while (!success && currentRetry < retryCount) { try { // 调用WebService接口方法,传递参数 myWebService.MyMethod(parameter1, parameter2, ...); success = true; // 如果没有发生异常,则表示调用成功 } catch (WebException ex) { Console.WriteLine("网络连接异常: " + ex.Message); currentRetry++; // 增加重试计数 } } if (success) { Console.WriteLine("调用WebService接口成功"); } else { Console.WriteLine("无法连接到WebService接口"); } } } ``` 在上述代码中,我们通过一个`while`循环来进行断网重传。如果发生`WebException`异常(表示网络连接失败),则增加重试计数并继续重试,直到达到重试次数上限或成功调用WebService接口为止。 你需要将`MyWebService`替换为实际的WebService代理类,`MyMethod`替换为实际的WebService接口方法名,并根据实际情况传递正确的参数。 请注意,这只是一个简单的示例代码,你可以根据具体需求进行修改和扩展,例如添加重试间隔、增加日志记录等。另外,断网重传功能也可以通过其他方法实现,如使用定任务或消息队列等。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值