Python调用C#的.so文件来实现Python和C#的交互。
方法一:使用PythonNet 包
Python for .NET is a package that gives Python programmers nearly seamless integration with the .NET Common Language Runtime (CLR) and provides a powerful application scripting tool for .NET developers. It allows Python code to interact with the CLR, and may also be used to embed Python into a .NET application.
相较于另一个Python调用C#的包IronPython,PythonNet是以Python为主体去调用的C#接口,而IronPython是.Net为主体,部分功能使用Python。
pip install pythonnet
这里直接使用来pip来进行安装,在使用conda安装的时候提示没有找到安装包
- 参考C#生成dll类库,这里注意在使用VS生成类库的时候,生成的目标平台选择
X86
或者x64
,应用程序的输出类型改为类库。
- C#代码
Class1.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Multi
{
public class Class1
{
public void Show(int a,int b)
{
Console.WriteLine((Math.Pow(a, b).ToString()));
Console.Read();
}
}
}
- Python代码
test.py
import clr
clr.AddReference('Multi') #加载的dll文件名称
from Multi import * #导入命名空间
cla=Class1() # 调用dll接口
cla.Show(2,3) # 接口使用
上面的Python代码在运行的时候要求C#的类库生成文件 xxx.dll
和Python文件处于同一个目录,如果需要在其他目录进行调用需要使用Python的 sys
包中 append
函数来添加工作目录。
import system
system.path.append("x://xxxxx//xxx")
在 Simple Example
文件夹就是上面代码的修改版本,最后附上PythonNet的详细使用说明,参考官方说明。