Search Results

4
votes
7answers
711 views

How do I get the month number from the year and week number in c#?

As the title says, given the year and the week number, how do I get the month number? edit: if a week crosses two months, I want the month the first day of the week is in. edit(2): …
0
votes

How do I get the month number from the year and week number in c#?

This is what I ended up doing: static int GetMonth(int Year, int Week) { DateTime tDt = new DateTime(Year, 1, 1); tDt.AddDays((Week - 1) * 7); for (int i = 0; i <= …