https://bugzilla.novell.com/show_bug.cgi?id=376929
User [EMAIL PROTECTED] added comment https://bugzilla.novell.com/show_bug.cgi?id=376929#c1 --- Comment #1 from Gert Driesen <[EMAIL PROTECTED]> 2008-04-04 01:12:06 MST --- The problem appears to be that I'm at a positive UTC offset (GMT+1). DateTime.MinValue with the specified format results in the following string: 0001-01-01T00:00:00.0000000+01:00 In DateTime._DoParse, we substract the UTC offset from the date to get the UTC time. This results in a negative tick count, which we "correct" by adding the tickcount for a day (??). At this point, we have the following UTC time: 0001-01-01T23:00:00.0000000 Finally, we change it into local time and this gets us: 0001-01-02T00:00:00.0000000 which is of course wrong! -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
