Is there an easy way within C# to check to see if a DateTime instance has been assigned a value or not?
|
|
|
The only way of having a variable which hasn't been assigned a value in C# is for it to be a local variable - in which case at compile-time you can tell that it isn't definitely assigned by trying to read from it :) I suspect you really want |
|||
|
|
|
do you mean like so:
or you could use Nullable
|
|||
|
|
|
DateTime is value type, so it can not never be null. If you think DateTime? ( Nullable ) you can use:
|
|||
|
|
|
I just found out that GetHashCode() for an unassigned datetime is always zero. I am not sure if this is a good way to check for null datetime, because, I can't find any documentation on why this behavior is displayed.
|
||||
|
|
|
I generally prefer, where possible, to use the default value of value types to determine whether they've been set. This obviously isn't possible all the time, especially with ints - but for DateTimes, I think reserving the MinValue to signify that it hasn't been changed is fair enough. The benefit of this over nullables is that there's one less place where you'll get a null reference exception (and probably lots of places where you don't have to check for null before accessing it!) |
|||
|
|