RE: [IronPython] Implementing an interface

2005-05-22 Thread Jim Hugunin
Neil Hodgson wrote: >I have an interface defined in C# that I would like to implement in > IronPython 0.7.5. Similar code works in Jython. The interface looks Implementing an interface in Python is one of the best ways to interoperate with a strongly typed language. As you noted, this works v

[IronPython] Implementing an interface

2005-05-20 Thread Neil Hodgson
I have an interface defined in C# that I would like to implement in IronPython 0.7.5. Similar code works in Jython. The interface looks like: public interface IDocumentChangeListener { void StateAltered(); void InvalidateAll(); void InvalidateRange(int a, int b); };