Is there a way to use IronPython objects and functions (compiled into an assembly) from C# code? -


IronPython.net documentation says that MSIL does not conform to CLS in assembly, but is this a solution?

dynamic type to C # 4.0.

The biggest problem is that typed information is not included in IronPython declarations, which makes it difficult to use from C # . Dynamic keyword adds dynamic type objects to C # 4.0. For example, see:

Function / object calling from C # 3.0 is a bit more annoying, but it is. Instead of typing foo.Bar (42) you just have to type something like foo.Invoke ("bar", 42) .


Comments