Skip to content

Instantly share code, notes, and snippets.

@tugberkugurlu
Forked from philipproplesch/TheEndIsNear.cs
Created December 10, 2012 13:13
Show Gist options
  • Save tugberkugurlu/4250491 to your computer and use it in GitHub Desktop.
Save tugberkugurlu/4250491 to your computer and use it in GitHub Desktop.
class Program
{
static void Main(string[] args)
{
typeof (DateTime)
.GetField("MaxValue")
.SetValue(DateTime.MaxValue, new DateTime(2012, 12, 21));
var endOfWorld = DateTime.MaxValue;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment