I would declare an empty String variable like this:
string myString = string.Empty;
Is there an equivalent for a \'DateTime\' variable
Option 1: Use a nullable DateTime?
Option 2: Use DateTime.MinValue
Personally, I'd prefer option 1.