MinutesAgo

edit

MinutesAgo

Namespace

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

public void MinutesAgoShoudReturnDateTimeAddMinutesNeg3For_3() { var today = DateTime.Now; var then = 3.MinutesAgo(); Assert.Equal(then, DateTime.Now.AddMinutes(-3)); }

Comments

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