This is preliminary documentation and is subject to change.

DateTimeExtensionsEnumerateInStepsUntil(DateTime, DateTime, TimeSpan, FuncDateTime, Boolean) Method

Enumerates starting with startDate until endDate in steps of distance

Definition

Namespace: MoreDateTime.Extensions
Assembly: MoreDateTime (in MoreDateTime.dll) Version: 1.3.0
C#
public static IEnumerable<DateTime> EnumerateInStepsUntil(
	this DateTime startDate,
	DateTime endDate,
	TimeSpan distance,
	Func<DateTime, bool> evaluator
)

Parameters

startDate  DateTime
The starting DateTime object
endDate  DateTime
The ending DateTime object
distance  TimeSpan
The distance expressed as TimeSpan
evaluator  FuncDateTime, Boolean
An evaluation function called for each step before returning it. If the evaluator returns false, the value is skipped

Return Value

IEnumerableDateTime
An IEnumerable of type DateTime

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DateTime. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also