Article here.
NulltoSring
1 02 2007This function retruns a blank “” string, if the supplied Str is Null
private static string NulltoString(string Str)
{
String ret;
if (Str == null)
ret = “”
else
ret = Str;
return ret;
}
Comments : 2 Comments »
Categories : Uncategorized
First Things First
30 01 2007Welcome to SourceFirst. This WordPress blog is populated using Windows Live Writer.
Comments : Leave a Comment »
Categories : Uncategorized