Does a way to interoperate in C# and Python exist?
I know and have used IronPython (obviously, it became really sweet with the dynamic keyword), and it allows to interpret Python scripts inside a C# application.
But I want this Python script to access C# classes and methods. I know, for example, this can be implemented using boost::python and C++, but how should I (if it's possible) do it with C#?
Thanks.