Skip to content

Instantly share code, notes, and snippets.

@MACSkeptic
Created April 11, 2010 18:16
Show Gist options
  • Save MACSkeptic/362949 to your computer and use it in GitHub Desktop.
Save MACSkeptic/362949 to your computer and use it in GitHub Desktop.
// ... see http://github.com/MACSkeptic/MACSkeptic.Commons
public static DateTime DaysAgo(this int days)
{
return days.DaysAgo(DateTime.Now);
}
// ... see http://github.com/MACSkeptic/MACSkeptic.Commons
// usage
2.DaysAgo(); // DateTime.Now - 2 days ;)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment