• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Delphi编写DLL供C#调用的实例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

Delphi中编写的Dll:

library TestDLL;

{ Important note about DLL memory management: ShareMem must be the
  first unit in your library's USES clause AND your project's (select
  Project-View Source) USES clause if your DLL exports any procedures or
  functions that pass strings as parameters or function results. This
  applies to all strings passed to and from your DLL--even those that
  are nested in records and classes. ShareMem is the interface unit to
  the BORLNDMM.DLL shared memory manager, which must be deployed along
  with your DLL. To avoid using BORLNDMM.DLL, pass string information
  using PChar or ShortString parameters. }

uses
  SysUtils,
  Classes;
function ADD(X,Y:Integer):Integer;stdcall;
begin
  Result :=X+Y;
end;
function Txx(x,y:Double):Double ;stdcall ;
begin
  Result :=x+y+y+x;
end;
function EncryVncPassStrHex(Str: PChar): PChar;stdcall;

var
  TempResult: String;
begin
  TempResult := WideCharToString(str);
  Result := PChar(TempResult);
end;
{$R *.res}
exports
   ADD,
   EncryVncPassStrHex,
   Txx;
begin
end.

其中涉及到三个输出函数:一个输出的变量为整数,一个为浮点数,另一个为字符串。

C#中调用该Dll:

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using System.Runtime.InteropServices;

namespace UseDLL
{
    /// <summary>
    /// Description of MainForm.
    /// </summary>
    public class UseDLL
    {
        [DllImport("TestDLL.DLL",EntryPoint="ADD",CharSet= CharSet.Auto,CallingConvention=CallingConvention.StdCall)]
        public static extern int add(int x,int y);
        [DllImport("TestDLL.DLL",EntryPoint="Txx",CharSet= CharSet.Auto,CallingConvention=CallingConvention.StdCall)]
        public static extern double PP(double x,double y);
        [DllImport("TestDLL.DLL", EntryPoint="EncryVncPassStrHex",CharSet=CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
         public static extern string EncryVncPassStrHex( string Str);
    }

    public partial class MainForm : Form
    {
        public MainForm()
        {
            //
            // The InitializeComponent() call is required for Windows Forms designer support.
            //
            InitializeComponent();
            
            //
            // TODO: Add constructor code after the InitializeComponent() call.
            //
        }
        
        void Button1Click(object sender, EventArgs e)
        {
            int x=10;
            int y=100;
            int z=UseDLL.add(x,y);
            this.textBox1.Text=z.ToString();
            double oo=0.123;
            double pp=0.254;            
            this.button1.Text=UseDLL.PP(oo,pp).ToString();
            this.Text =UseDLL.EncryVncPassStrHex("我是XXX");
        }
    }
}

注意:在C#的using部分必须添加“using System.Runtime.InteropServices”。

程序运行结果为:

 本程序在delphi2010和SharpDevelop通过。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap