阅读量:0
在C#中调用Python脚本,可以使用Pythonnet库(Python for .NET)或者IronPython库。这里我将分别介绍这两种方法。
- 使用Pythonnet库(Python for .NET):
首先,需要安装Pythonnet库。在命令行中运行以下命令:
pip install pythonnet
然后,在C#项目中添加对Pythonnet库的引用。在解决方案资源管理器中,右键单击项目名称,选择“添加”->“引用”,然后在“程序集”选项卡中找到并添加Pythonnet库。
接下来,编写C#代码调用Python脚本。例如,假设有一个名为example.py
的Python脚本,内容如下:
def add(a, b): return a + b
在C#中调用此脚本:
using System; using Python.Runtime; namespace CallPythonFromCSharp { class Program { static void Main(string[] args) { using (Py.GIL()) // 初始化Python引擎 { dynamic py = Py.Import("example"); // 导入Python脚本 int result = py.add(3, 4); // 调用Python函数 Console.WriteLine("Result: " + result); // 输出结果 } } } }
- 使用IronPython库:
首先,需要安装IronPython库。在命令行中运行以下命令:
pip install IronPython
然后,在C#项目中添加对IronPython库的引用。在解决方案资源管理器中,右键单击项目名称,选择“添加”->“引用”,然后在“程序集”选项卡中找到并添加IronPython库。
接下来,编写C#代码调用Python脚本。例如,假设有一个名为example.py
的Python脚本,内容如下:
def add(a, b): return a + b
在C#中调用此脚本:
using System; using IronPython.Hosting; using Microsoft.Scripting.Hosting; namespace CallPythonFromCSharp { class Program { static void Main(string[] args) { ScriptEngine engine = Python.CreateEngine(); // 创建Python引擎 ScriptSource source = engine.CreateScriptSourceFromFile("example.py"); // 从文件中加载Python脚本 ScriptScope scope = engine.CreateScope(); // 创建Python作用域 source.Execute(scope); // 执行Python脚本 Func<int, int, int> add = scope.GetVariable<Func<int, int, int>>("add"); // 获取Python函数 int result = add(3, 4); // 调用Python函数 Console.WriteLine("Result: " + result); // 输出结果 } } }
这样,你就可以在C#中调用Python脚本了。注意,这两种方法都需要Python环境。如果没有安装Python,需要先安装Python。