[Mono-list] C# language question

John Barnette jbarn@httcb.net
Sat, 14 Jul 2001 16:16:52 -0600


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.