Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Assume I have the following code:

public static class Foo
{
    public static void Bar() {}
}

In IronPython, I would like to have:

Bar()

Without having to include the Foo on the line. Now, I know I can say:

var Bar = Foo.Bar
Bar()

But I would like to add Bar to the ScriptScope in my C# code using SetVariable. How can I do this?

share|improve this question

1 Answer

up vote 7 down vote accepted

Create delegate to method and set in to scope.

public class Program
{
    public static void Main(string[] args)
    {
        var python = Python.CreateEngine();
        var scriptScope = python.CreateScope();
        scriptScope.SetVariable("Print", new Action<int>(Bar.Print));

        python.Execute(
            "Print(10)",
            scriptScope
            );
    }

}

public static class Bar
{
    public static void Print(int a)
    {
        Console.WriteLine("Print:{0}", a);
    }
}
share|improve this answer
Works perfectly. I tip my bonnet to you. – Amy Sep 3 '10 at 15:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.