Is there a way to find the current week number we are in out of the current year, where Monday is the start of the new week and not Sunday?
What I have so far:
Date_Time_Info = DateTimeFormatInfo.CurrentInfo
Calendar = Date_Time_Info.Calendar
Calendar.GetWeekOfYear(DateTime.Now, Date_Time_Info.CalendarWeekRule, Date_Time_Info.FirstDayOfWeek)
Thanks!