Please check following code
DateTime? tmp = new DateTime();
tmp = null;
return tmp.ToString();
It returns String.Empty.
Is it correct?
May be it will be better to rise exception in second line of code
|
Yes, it's correct. From the documentation
Note also that |
|||||
|
Yes, what would you have expected ?
But |
|||||||||||
|
tmp.Valuewill throw an exception. ThatToString()does not was a design decision, and a good one in my opinion. – Henk Holterman Dec 28 '10 at 15:47