IronPython脚本调用C#dll示例

本文介绍如何使用IronPython脚本直接调用C#编写的DLL,包括静态方法及类成员方法的调用示例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

上两篇IronPython脚本的文章介绍了与C#紧密结合的示例,这里还将提供一个与C#结合更紧密的示例,直接调用C#编写的DLL。

我们还是沿用了上篇文章的代码(其实这里可以直接使用IronPython调试器进行联调了,没有必要再嵌入到C#了)

注意:scriptEngine.AddToPath(Application.StartupPath);这句代码比较关键,设定dll文件所在的目录。

usingSystem;
usingSystem.Collections.Generic;
usingSystem.ComponentModel;
usingSystem.Data;
usingSystem.Drawing;
usingSystem.Text;
usingSystem.Windows.Forms;
usingIronPython.Hosting;

namespaceTestIronPython
{
publicpartialclassForm1:Form
{
publicForm1()
{
InitializeComponent();
}

privatevoidbutton1_Click(objectsender,EventArgse)
{
PythonEnginescriptEngine
=newPythonEngine();
scriptEngine.AddToPath(Application.StartupPath);

scriptEngine.Execute(textBox1.Text);
}
}
}

开始编写可供IronPython脚本调用的DLL,我们编写了两个类,一个提供静态函数访问,另一个提供属性和普通函数访问,以区别在IronPython脚本不同调用的方式。代码如下:

usingSystem;
usingSystem.Collections.Generic;
usingSystem.Text;

namespaceIronPython_TestDll
{
publicclassTestDll
{
publicstaticintAdd(intx,inty)
{
returnx+y;
}
}

publicclassTestDll1
{
privateintaaa=11;
publicintAAA
{
get{returnaaa;}
set{aaa=value;}
}
publicvoidShowAAA()
{
global::System.Windows.Forms.MessageBox.Show(aaa.ToString());
}

}
}

下面再让我们看看IronPython脚本中的代码吧:

importclr
clr.AddReferenceByPartialName(
"System.Windows.Forms")
clr.AddReferenceByPartialName(
"System.Drawing")
fromSystem.Windows.Formsimport*
fromSystem.Drawingimport*

clr.AddReferenceToFile(
"IronPython_TestDll.dll")
fromIronPython_TestDllimport*

a
=12
b
=6
c
=TestDll.Add(a,b)
MessageBox.Show(c.ToString())

td
=TestDll1()
td.AAA
=100
td.ShowAAA()

比较关键的是这两句:

clr.AddReferenceToFile("TronPython_TestDll.dll")--加载DLL文件
fromTronPython_TestDllimport* -- 导入命名空间

静态方法可以直接调用,普通方法需要先定义类,再访问(和访问IronPython
自己本身的类没有任何区别)。

运行结果如下:

现在你是否对IronPython充满期待和兴趣了吧,动起手来,感受它的强大!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值