Wednesday, May 30, 2007 - Posts

String.Empty vs. ""

MSDN ReferenceIn almost any decent coding standard the rule of usage:string someVariableName = "";     //  Bad  and...string someVariableName = string.empty;   // Good!  The later does not create an object
posted by adron | 0 Comments
Filed Under: ,