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
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);
};