Hi all,
Documentation says that the oldest date allowed for DateTime is 01-01-0001 00:00:00.
It seems like there is a limit to the futur.
Actually, if you try 01/01/144684 as a string for DateTime:
MyDate=DateTime.FromString(“01/01/144684”, Locale.Current) ’ Locale is a French one
You get a RuntimeException “Date is not in an accepted format for parsing”.
“31/12/144683” is accepted.
Could someone confirm and explain why? I’m so curious to know what DayOfWeek will my 142 686th birthday happen …
TIA
Jean-Luc