Skip to content

Instantly share code, notes, and snippets.

@cfstras
Created June 4, 2025 08:47
Show Gist options
  • Save cfstras/7d7a1b5a728aa390dc120e7610d9921c to your computer and use it in GitHub Desktop.
Save cfstras/7d7a1b5a728aa390dc120e7610d9921c to your computer and use it in GitHub Desktop.
public class DateTimeInsanityTests
{
[Fact]
public void YourDateTimeIsInsane()
{
var t = new DateTime();
// Does not throw
Console.WriteLine(new DateTimeOffset(t.ToUniversalTime()));
// Throws an exception in timezones east of UTC
Console.WriteLine(new DateTimeOffset(t));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment