1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > ironpython调用c dll_IronPython脚本调用C#dll示例

ironpython调用c dll_IronPython脚本调用C#dll示例

时间:2019-03-26 05:40:11

相关推荐

ironpython调用c dll_IronPython脚本调用C#dll示例

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

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

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

usingSystem;

usingSystem.Collections.Generic;

ponentModel;

usingSystem.Data;

usingSystem.Drawing;

usingSystem.Text;

usingSystem.Windows.Forms;

usingIronPython.Hosting;

namespaceTestIronPython

{

publicpartialclassForm1 : Form

{

publicForm1()

{

InitializeComponent();

}

privatevoidbutton1_Click(objectsender, EventArgs e)

{

PythonEngine scriptEngine =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脚本中的代码吧:

import clr

clr.AddReferenceByPartialName("System.Windows.Forms")

clr.AddReferenceByPartialName("System.Drawing")

from System.Windows.Forms import *

from System.Drawing import *

clr.AddReferenceToFile("IronPython_TestDll.dll")

from IronPython_TestDll import *

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文件

from TronPython_TestDll import * -- 导入命名空间

静态方法可以直接调用,普通方法需要先定义类,再访问(和访问IronPython

自己本身的类没有任何区别)。

运行结果如下:

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

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。