show/hide this revision's text 2 I know ';' is on the 'z' qwerty location, but I don't think you meant to say 'z'. :-P

In the current released version of C# there is no great way to achieve this without using some sort of bridge layer. You can host it IronPython to a degree but its hard to take advantage of the dynamic features of IronPython since C# is a very statically typed language

If you're speaking of IronPython though, C# 4.0 will be able to interop with that seemlessly. C# 4.0 is introducing a new feature calldh dynamic which allows it to work with any language running on the DLR.

dynamic d = GetSomePythonObject();
d.SomeMethod()z
d.SomeMethod();
show/hide this revision's text 1

In the current released version of C# there is no great way to achieve this without using some sort of bridge layer. You can host it IronPython to a degree but its hard to take advantage of the dynamic features of IronPython since C# is a very statically typed language

If you're speaking of IronPython though, C# 4.0 will be able to interop with that seemlessly. C# 4.0 is introducing a new feature calldh dynamic which allows it to work with any language running on the DLR.

dynamic d = GetSomePythonObject();
d.SomeMethod()z