python与C#的互相调⽤
python与C#的互相调⽤
⼀、C#调⽤python
新建⼀个项⽬,添加引⽤:IronPython.dll,Microsoft.Scripting.dll(在IronPython的安装⽬录中)。创建⼀个⽂本⽂件命名为hello.py,把该⽂件添加的当前的项⽬中,并设置为总是输出。
#hello.py
def welcome(name):
return"hello" + name
调⽤hello.py⽂件中的⽅法:
static void main(string[] args)
{
ScriptRuntime pyRunTime=Python.CreateRuntime();
dynamic obj=pyRunTime.UseFile("hello.py");
Console.Write(obj.welcome("Nick"));
Console.ReadKey();
}
⼆、Python调⽤C#
⽰例⼀:调⽤dll中的⽅法
1.先准备⼀个C#写的dll,名称为IronPython_TestDll.dll
using System;
using System.Collections.Generic;
using System.Text;
namespace IronPython_TestDll
{
public class TestDll
{
public static int Add(int x, int y)
{
return x + y;
}
}
public class TestDll1
{
private int aaa = 11;
public int AAA
{
get { return aaa; }
set { aaa = value; }
}
public void ShowAAA()
{
global::System.Windows.Forms.MessageBox.Show(aaa.ToString());
}
}
}
2.调⽤C#的dll中的⽅法
import clr
clr.AddReferenceByPartialName("System.Windows.Forms")
clr.AddReferenceByPartialName("System.Drawing")
from System.Windows.Forms import *
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()
python新建项目教程td.AAA=100
td.ShowAAA()
⽰例⼆:动态执⾏python代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using IronPython.Hosting;
namespace TestIronPython
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
PythonEngine scriptEngine = new PythonEngine();
//设定dll⽂件所在的⽬录
scriptEngine.AddToPath(Application.StartupPath);
//textBox1.Text中写的是python代码,但调⽤的是dll中的⽅法            scriptEngine.Execute(textBox1.Text);
}
}
}
//textBox1.Text中写的是如下代码,会计算弹出100的提⽰框。
a=12
b=6
c=TestDll.Add(a,b)
MessageBox.Show(c.ToString())
td=TestDll1()
td.AAA=100
td.ShowAAA()

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。