August 2003 - Posts

VB.NET Features creep into C#

From Jeff Key's Blog:

Delegate types no longer need to be explicitly instantiated. For example:

button.Click += new EventHandler(AddClick);

can be expressed by:

button.Click += AddClick;

This is one of those things I've always like about VB.NET. Interesting to see it making it's way into C#.
Posted by PSteele | 1 comment(s)

The work we produce

A nice snippet from Scoble:
You know what's different about Microsoft? S&&t doesn't fly here. You try to put lipstick on a pig and people will call you on it. That hasn't always happened elsewhere in my career.
*sigh*... I wish more tech companies worked this way. Does anyone still wonder why Microsoft is #1?
Posted by PSteele | 1 comment(s)
More Posts