从C#访问Ironpython字典

时间:2013-04-29 12:50:08

标签: c#-4.0 ironpython

我在Ironpython脚本中定义了字典,我想从我的C#访问这个字典 码。有人可以提供示例代码来实现我的要求。

很抱歉,之前我没有用代码提及我的问题陈述。

import clr
clr.AddReference("System.Core")
import System
clr.ImportExtensions(System.Linq)
from System.Collections.Generic import Dictionary,List

def check(self):
    dict1 = Dictionary[str,str]
    dict1["a"] = "aa"
    dict2 = Dictionary[str,str]
    dict2["b"] = "bb"
    self[0] = dict1
#   self.Add(dict1)
    return self

C#

var runtime = Python.CreateRuntime();
dynamic test = runtime.UseFile("Test.py");


var myDictList = new List<Dictionary<string, string>>();
var myDL = new List<Dictionary<string, string>>();
myDL = test.check(myDictList);

我的目标是在python中的Dictionary of List上操作(添加,从列表中删除)并将其发送回C#,我可以进一步使用它。 我想要的是在python或C#中创建一个字典列表,并在两个地方(python和C#)中使用它。 我怎么能这样做。

2 个答案:

答案 0 :(得分:4)

这有效:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Scripting.Hosting;
using Microsoft.Scripting.Utils;
using Microsoft.Scripting.Runtime;
using IronPython;
using IronPython.Hosting;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            ScriptEngine pyEngine = Python.CreateEngine();
            ScriptScope pyScope = pyEngine.CreateScope();
            ScriptSource pyScript = pyEngine.CreateScriptSourceFromString("d = {'a':1,'b':2,'c':3}");
            CompiledCode pyCompiled = pyScript.Compile();
            pyCompiled.Execute(pyScope);
            IronPython.Runtime.PythonDictionary d = pyScope.GetVariable("d");
            Console.WriteLine(d.get("a"));
            Console.Read();
        }
    }
}

应该为您提供键'a'的第一个值。希望这能让你前进。 可能有一两个包括太多。

答案 1 :(得分:0)

def check(self):
    dict1 = Dictionary[str,str]()
    dict1["a"] = "aa"
    dict2 = Dictionary[str,str]()
    dict2["b"] = "bb"
    self[0] = dict1
    #   self.Add(dict1)
    return self
注意()。