If we have Extension methods:
public static TimeSpan Days(this int input) { return TimeSpan.FromDays(input); }
public static DateTime Ago(this TimeSpan input) { return (DateTime.Now - input); }
Then we can:
DateTime when = 24.Days().Ago();
Pretty neat, huh?