Convert calendar-week to Date
问题 is there a simple builtin function that i could use to get a date instance from a calendarweek/year-combination? It should be possible to enter 10w2005 into a TextBox and i'll create the date 07 March 2005 from it. Monday should be first day and CalendarWeekRule should be FirstFullWeek. My first approach was: Dim w As Int32 = 10 Dim y As Int32 = 2005 Dim d As New Date(y, 1, 1) d = d.AddDays(7 * w) But this does not work because the FirstDay- CalendarWeekRule are not applied. Thanks in advance