Reputation: 81372
For political correctness, I would like to know if there is a way to instantiate a date so that it contains the lowest date value possible in c# net v2.
Upvotes: 1
Views: 3950
Reputation: 10562
A newly constructed DateTime object also handily constructs by default to MinValue.
Upvotes: 7
Reputation: 755587
Try DateTime.MinValue. This is the lowest possible value for a DateTime instance in the CLR. It is a language independent value.
Upvotes: 20