I would declare an empty String variable like this:
string myString = string.Empty;
Is there an equivalent for a 'DateTime' variable ?
Update :
The problem is I use this 'DateTime' as a parameter for a 'StoredProcedure' in SQL. E.g:
DateTime? someDate = null;
myCommand.Parameters.AddWithValue("@SurgeryDate", someDate);
When I run this code an exception is catched telling me the 'StoredProcedure' expected a '@SurgeryDate' parameter. But i provided it. Any idea why?
You may want to use a nullable datetime.
Datetime? someDate = null;
You may find instances of people using
DateTime.Max
orDateTime.Min
in such instances, but I highly doubt you want to do that. It leads to bugs with edge cases, code that's harder to read, etc.Either:
or
No. You have 2 options:
This works when you need to do something every X amount of time (since you will always be over
MinValue
) but can actually cause subtle errors (such as using some operators w/o first checking if you are notMinValue
) if you are not careful.And you can use
Nullable
:Which is nice and avoids most issues while introducing only 1 or 2.
It really depends on what you are trying to achieve.
You can set a DateTime variable to be '1/1/0001 00:00:00' but the variable itself cannot be null. To get this MinTime use:
There's no such thing as an empty date per se, do you mean something like:
A
string
is a sequence of characters. So it makes sense to have an emptystring
, which is just an empty sequence of characters.But
DateTime
is just a single value, so it's doesn't make sense to talk about an “empty”DateTime
.If you want to represent the concept of “no value”, that's represented as
null
in .Net. And if you want to use that with value types, you need to explicitly make them nullable. That means either usingNullable<DateTime>
, or the equivalentDateTime?
.DateTime
(just like all value types) also has a default value, that's assigned to uninitialized fields and you can also get it bynew DateTime()
ordefault(DateTime)
. But you probably don't want to use it, since it represents valid date: 1.1.0001 0:00:00.