How do I create a C# event handler that can be handled in IronPython?
Note that I am using IronPython 2.0.1. I am able to handle events from system classes with no
I figured it out.
The class needs to be public as well as the event.
eg
public class Foo { ... public event EventHandler Bar; }