Is this the proper way to initialize a DateTime variable? It wouldn't accept null and VS2013 complains about it being uninitialized.
DateTime issueDate = DateTime.MinValue;
I printed the value and it's 1/1/0001 12:00:00 AM , so technically it's not null.
Go to the complete details ...