I need to get the date of the first and last day of the week knowing the week number.
I get a start date and an end date, representing the first and last day of a s
Subtract 1 year from your original DateTime and call your GetWeekNumber method again with that.
TimeSpan oneYear = dateTime.AddYears(1) - dateTime; var lastYearWeekNumber = GetWeekNumber(dateTime.Subtract(oneYear));