gpt4 book ai didi

c# - 从 IronPython 中的其他命名空间访问 C# 枚举和类

转载 作者:太空宇宙 更新时间:2023-11-03 13:10:59 24 4
gpt4 key购买 nike

我坚持我认为应该是 IronPython 与 C# 集成的一个相当基本的功能(当然,这是一个非常简化的示例)。下面是一个简单的多项目解决方案。第一个项目从一个命名空间定义一个枚举和一个类

namespace EnumTest
{
public class EnumTest
{
public enum FooEnum
{
FooOne = 101,
FooTwo = 102,
};

public EnumTest(FooEnum f)
{
_f = f;
}
}
}

然后,我有另一个包含所有 IronPython 的项目:运行时 DLL、Python 模块和从文件运行 Python 脚本的 C# 类。

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using IronPython.Hosting;
using Microsoft.Scripting;
using Microsoft.Scripting.Hosting;

namespace IronPythonRunner
{
public class IronPythonRunner
{
public IronPythonRunner()
{
ScriptEngine ironPythonEngine = Python.CreateEngine();
ScriptScope pythonScope = ironPythonEngine.CreateScope();
dynamic scope = pythonScope;

const string script = "c:/temp/try.py";
String scriptDir = Path.GetDirectoryName(script);
String ironPyDir = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location) + "\\IronPythonDistributable\\Lib";
ICollection<String> paths = ironPythonEngine.GetSearchPaths();
paths.Add(scriptDir);
paths.Add(ironPyDir);
ironPythonEngine.SetSearchPaths(paths);

ScriptSource source = ironPythonEngine.CreateScriptSourceFromFile(script);
try
{
source.Execute(pythonScope);
}
catch (Exception e)
{
Debug.WriteLine(e.ToString());
}
finally
{
ironPythonEngine.Runtime.Shutdown();
}
}
}
}

最后,我有一个 c# 项目,它是一个用于运行 python 脚本的测试 GUI

using System;
using System.Windows.Forms;

namespace IronPythonNamespaceTest
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
IronPythonRunner.IronPythonRunner r = new IronPythonRunner.IronPythonRunner();
}
}
}

当我尝试运行以下 python 脚本时

print "hello world"
print str(FooEnum.FooOne)
t = EnumTest(FooEnum.FooTwo)

我得到了“hello world”输出,但随后我得到了 C# IronPython.Runtime.UnboundNameException: name 'FooEnum' is not defined。这让我想到了我的问题,我应该如何从我的 python 脚本中访问枚举和类?

最佳答案

您需要导入程序集:

import clr
clr.AddReference("assembly_name")
from EnumTest import EnumTest
from EnumTest.EnumTest import FooEnum

关于c# - 从 IronPython 中的其他命名空间访问 C# 枚举和类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28680665/

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