DateOnlyExtensionsNumberOfWorkdaysUntil Method
Count the number of Workdays between startDate and endDate
Namespace: MoreDateTime.ExtensionsAssembly: MoreDateTime (in MoreDateTime.dll) Version: 1.3.0
Dim startDate As DateOnly
Dim endDate As DateOnly
Dim cultureInfo As CultureInfo
Dim returnValue As Double
returnValue = startDate.NumberOfWorkdaysUntil(endDate,
cultureInfo)
No code example is currently available or this language may not be supported.
- startDate DateOnly
- The start date
- endDate DateOnly
- The end date
- cultureInfo CultureInfo (Optional)
- The culture info for workWorkdays and holiWorkdays, can be null to use current
DoubleThe number of Workdays between startDate and endDate as a double with fractionsIn Visual Basic and C#, you can call this method as an instance method on any object of type
DateOnly. 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).