SyntaxFix
Write A Post
Hire A Developer
Questions
The simpliest way to understand it is that DateTime is a struct. When you initialize a struct it's initialize to it's minimum value : DateTime.Min
DateTime.Min
Therefore there is no difference between default(DateTime) and new DateTime() and DateTime.Min
default(DateTime)
new DateTime()