Hey kids,
I'm working at home without benefits of documentation, and I have a bit of a
question. In Java, one can create anonymous classes:
IFoo quux = new IFoo() {
public void bar() {
System.out.println("bar");
}
};
Is it possible to do this in C#?
~ j.