To check if Date is Workday in C# and VB.NET you can use the following snippet.
Sample C#
public static bool IsWorkDay(DateTime date, bool isWorkDaySaturday)
{
if (date == null) { throw new ArgumentNullException("date");}
switch (date.DayOfWeek)
{
case DayOfWeek.Saturday:
return isWorkDaySaturday;
case DayOfWeek.Sunday:
return false;
default:
return true;
}
}
Sample VB.NET
Public Shared Function IsWorkDay(date As DateTime, isWorkDaySaturday As Boolean) As Boolean
If date Is Nothing Then
Throw New ArgumentNullException("date")
End If
Select Case date.DayOfWeek
Case DayOfWeek.Saturday
Return isWorkDaySaturday
Case DayOfWeek.Sunday
Return False
Case Else
Return True
End Select
End Function
RT @CodeSnippetsNET: Check if Date is Workday C# and #VB .NET http://t.co/U7cDRu5ydZ #dotnet #csharp #dev #coding #code