Skip to content

Instantly share code, notes, and snippets.

View MACSkeptic's full-sized avatar
🏠
Working from home

♥♥♥♥♥ ����� MACSkeptic

🏠
Working from home
View GitHub Profile
// ... 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 ;)