Aspectacular.RelativeTimeSpanExtensions.Future C# (CSharp) Method

Future() public static method

public static Future ( this unit, ulong unitCount, System.DateTime referenceMoment ) : DateRange
unit this
unitCount ulong
referenceMoment System.DateTime
return DateRange
        public static DateRange Future(this TimeUnits unit, ulong unitCount, DateTime? referenceMoment)
        {
            var span = new RelativeTimeSpan(Timeline.Future, unit, unitCount);
            DateRange range = span.GetDateTimeRange(referenceMoment);
            return range;
        }

Same methods

RelativeTimeSpanExtensions::Future ( this unit, ulong unitCount = 1, DateTimeOffset referenceMoment = null ) : TimeMomentRange