IronPython脚本调用C#dll示例

上篇Python脚本调用C#代码数据交互示例(hello world)介绍了与C#紧密结合的示例,这里还将提供一个与C#结合更紧密的示例,直接调用C#编写的DLL。
      我们还是沿用了上篇文章的代码(其实这里可以直接使用IronPython调试器进行联调了,没有必要再嵌入到C#了)

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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using IronPython.Hosting;
  9. namespace TestIronPython
  10. {
  11.     public partial class Form1 : Form
  12.     {
  13.         public Form1()
  14.         {
  15.             InitializeComponent();
  16.         }
  17.         private void button1_Click(object sender, EventArgs e)
  18.         {
  19.             PythonEngine scriptEngine = new PythonEngine();
  20.             scriptEngine.AddToPath(Application.StartupPath); 
  21.             scriptEngine.Execute(textBox1.Text);          
  22.         }
  23.     }
  24. }
复制代码

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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace IronPython_TestDll
  5. {
  6.     public  class TestDll
  7.     {
  8.         public static int Add(int x, int y)
  9.         {
  10.             return x + y;
  11.         }
  12.     }
  13.     public class TestDll1
  14.     {
  15.         private int aaa = 11;
  16.         public int AAA
  17.         {
  18.             get { return aaa; }
  19.             set { aaa = value; }
  20.         }
  21.         public void ShowAAA()
  22.         {
  23.             global::System.Windows.Forms.MessageBox.Show(aaa.ToString());
  24.         }
  25.     }
  26. }
复制代码

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

  1. import clr
  2. clr.AddReferenceByPartialName("System.Windows.Forms")
  3. clr.AddReferenceByPartialName("System.Drawing")
  4. from System.Windows.Forms import *
  5. from System.Drawing import *
  6. clr.AddReferenceToFile("IronPython_TestDll.dll")
  7. from IronPython_TestDll import *
  8. a=12
  9. b=6
  10. c=TestDll.Add(a,b)
  11. MessageBox.Show(c.ToString())
  12. td=TestDll1()
  13. td.AAA=100
  14. td.ShowAAA()
复制代码

比较关键的是这两句:
    clr.AddReferenceToFile("TronPython_TestDll.dll")    -- 加载DLL文件
   from TronPython_TestDll import *                                  -- 导入命名空间 
        静态方法可以直接调用,普通方法需要先定义类,再访问(和访问IronPython
自己本身的类没有任何区别)。
       运行结果如下:


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

原文地址:https://www.cnblogs.com/123ing/p/3901353.html