DaysAgo

edit

DaysAgo

Namespace

Summary== Returns a date in the past by days. ==Example==DateTime then=3.DaysAgo(); ==Unit Test

public void DaysAgoShouldReturnDateTimeAddDaysNeg3For_3() { var today = DateTime.Now; var then = 3.DaysAgo(); Assert.Equal(then, DateTime.Now.AddDays(-3)); }

Comments

SubSonic 3.0 implements this as an extension on System.Int- 2.x uses a static method on SubSonic.Sugar.Dates.