mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-08 09:15:10 +00:00
17 lines
313 B
C#
17 lines
313 B
C#
using System;
|
|
|
|
namespace ICD.Common.Utils.Extensions
|
|
{
|
|
public static class DayOfWeekExtensions
|
|
{
|
|
public static bool IsWeekday(this DayOfWeek day)
|
|
{
|
|
return !IsWeekend(day);
|
|
}
|
|
|
|
public static bool IsWeekend(this DayOfWeek day)
|
|
{
|
|
return day == DayOfWeek.Saturday || day == DayOfWeek.Sunday;
|
|
}
|
|
}
|
|
} |