TheChaseMan's Frenetic SoapBox
Always looking for better ways to do things...
Maybe I'm easily impressed, but delegate inference in C# v2.0 is a nice change. Instead of:
MyDelegate myDel = new MyDelegate(MyFunction);
you can do this...
MyDelegate myDel = MyFunction;
posted on Monday, March 29, 2004 12:37 PM