Skip to content

Instantly share code, notes, and snippets.

@MACSkeptic
Created April 11, 2010 18:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • 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