This is the funniest picture I’ve seen all week, acurate too ;) Thanks to Sashidhar Kokku for finding this gem.
Archive for January 16th, 2005
Project Management
Posted in Business Advice, Everything, tagged Management on January 16, 2005 | 1 Comment »
More on Null and Empty Strings
Posted in Everything, Software Development, tagged C#, Code on January 16, 2005 | 2 Comments »
Following on from Jeff Atwood’s post about comparing a string to empty string (“”), I found out that C# and VB.net do not behave the same when comparing a string that is null. In the following C# snippet, the code will display The String is NOT Null: string s = null; if (s == “”) [...]
