Support implementation of unnamed Interfaces in Java:
interface IFace { void foo(); }
new IFace { void foo() { /* */ } };
and or Delegate functions.
Maybe use MI Attributes for this purpose.
Another usefull language construct whould be lambda expressions.
Log in to post a comment.