gpt4 book ai didi

c# - 从 C# 调用 Python 方法(没有 IronPython)

转载 作者:太空宇宙 更新时间:2023-11-03 15:39:45 25 4
gpt4 key购买 nike

<分区>

如何从我的 C# 方法调用 Python 脚本中的函数? (没有 IronPython)

在 hello.py 中

def hello_world(msg):
print msg

在测试.cs中

        ProcessStartInfo start = new ProcessStartInfo ();
start.FileName = "hello.py";
start.Arguments = string.Format("{0}", arg);
start.UseShellExecute = true;
start.RedirectStandardOutput = true;

using(Process process = Process.Start(start))
{

}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com