DateTimeExtensionsNumberOfBusinessDaysUntil Method |
Calculates number of business days, taking into account:
- weekends (Saturdays and Sundays)
- bank holidays in the middle of the week
Namespace: Entelect.ExtensionsAssembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntaxpublic 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:
Int32Number 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).
ExceptionsException | Condition |
---|
ArgumentException | If startDateTime is after endDateTime |
See Also