Click or drag to resize
DateTimeExtensionsNumberOfBusinessDaysUntil Method
Calculates number of business days, taking into account: - weekends (Saturdays and Sundays) - bank holidays in the middle of the week

Namespace: Entelect.Extensions
Assembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntax
C#
public static int NumberOfBusinessDaysUntil(
	this DateTime startDateTime,
	DateTime endDateTime,
	params DateTime[] bankHolidays
)

Parameters

startDateTime
Type: SystemDateTime
First day in the time interval
endDateTime
Type: SystemDateTime
Last day in the time interval
bankHolidays
Type: SystemDateTime
List of bank holidays excluding weekends

Return Value

Type: Int32
Number of business days during the 'span'

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).
Exceptions
ExceptionCondition
ArgumentExceptionIf startDateTime is after endDateTime
See Also