forgot to add credits for extention

This commit is contained in:
Bitl 2021-06-12 11:48:41 -07:00
parent ac3049d418
commit 306c689450
1 changed files with 1 additions and 0 deletions

View File

@ -226,6 +226,7 @@ public static class NETExt
#endregion
#region DateTime Extensions
//https://stackoverflow.com/questions/5672862/check-if-datetime-instance-falls-in-between-other-two-datetime-objects
public static bool IsBetweenTwoDates(this DateTime dt, DateTime start, DateTime end)
{
return dt >= start && dt <= end;