| Home | Biography | Speaking | Articles | Books | Music |
You know you’re working with a former/current C++ developer when you see this in C# code:
// Assume Data has been defined somewhere...
Data data = /* get string value */;
if(null != data)
{
// ...
}
I know why they’re doing this, but it’s not necessary in C#.
Published: 05.04.2007 08:55:35 AM CST