DLR: Do i really need code generation here?
问题 spent some time again with the scripting interface of my app. i guess i now have an advanced dlr problem here. I have a python script I have an .NET object [o1] I call a method on the python script from .NET via Iron Python. The python code creates an object [o2] The python code calls an method on object [o1] passing [o2] as an argument (Via subclassing DynamicMetaObject) In the .NET code of the o1-method i want to dynamically call methods on o2 For example i could do that via ((dynamic)o2)