Thursday, March 19, 2009
format timespan to (HH:MM:SS:sss)
return string.Format(i_messageString, i_timespan.Hours, i_timespan.Minutes, i_timespan.Seconds, i_timespan.Milliseconds)
Tuesday, March 10, 2009
Assign Null to Integer
int? someInt = null ;
or use nullable<> type
eg:
Nullable< int >
someInt = null
;
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)