I would declare an empty String variable like this:
string myString = string.Empty;
Is there an equivalent for a \'DateTime\' variable
There's no such thing as an empty date per se, do you mean something like:
DateTime? myDateTime = null;