C# Date Formats

8 02 2007

Article here.





NulltoSring

1 02 2007

This 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;
}





First Things First

30 01 2007

Welcome to SourceFirst. This WordPress blog is populated using Windows Live Writer.