ฉันใช้ Google เป็นจำนวนมากและพบวิธีแก้ปัญหามากมาย แต่ไม่มีใครให้หมายเลขในสัปดาห์ที่ถูกต้องสำหรับ 2012-12-31 แม้แต่ตัวอย่างบน MSDN ( ลิงค์ ) ก็ล้มเหลว
2012-12-31 คือวันจันทร์จึงควรเป็นสัปดาห์ที่ 1 แต่ทุกวิธีที่ฉันลองให้ฉัน 53 นี่คือวิธีการบางอย่างที่ฉันได้ลอง:
จาก MDSN Library:
DateTimeFormatInfo dfi = DateTimeFormatInfo.CurrentInfo;
Calendar cal = dfi.Calendar;
return cal.GetWeekOfYear(date, dfi.CalendarWeekRule, dfi.FirstDayOfWeek);
โซลูชันที่ 2:
return new GregorianCalendar(GregorianCalendarTypes.Localized).GetWeekOfYear(date, CalendarWeekRule.FirstFourDayWeek, DayOfWeek.Monday);
โซลูชันที่ 3:
CultureInfo ciCurr = CultureInfo.CurrentCulture;
int weekNum = ciCurr.Calendar.GetWeekOfYear(dtPassed, CalendarWeekRule.FirstFourDayWeek, DayOfWeek.Monday);
return weekNum;
ปรับปรุง
วิธีการดังต่อไปนี้จริง ๆ แล้วส่งกลับ 1 เมื่อวันที่เป็น 2012-12-31 ปัญหาของฉันคือว่าวิธีการของฉันไม่เป็นไปตามมาตรฐาน ISO-8601
// This presumes that weeks start with Monday.
// Week 1 is the 1st week of the year with a Thursday in it.
public static int GetIso8601WeekOfYear(DateTime time)
{
// Seriously cheat. If its Monday, Tuesday or Wednesday, then it'll
// be the same week# as whatever Thursday, Friday or Saturday are,
// and we always get those right
DayOfWeek day = CultureInfo.InvariantCulture.Calendar.GetDayOfWeek(time);
if (day >= DayOfWeek.Monday && day <= DayOfWeek.Wednesday)
{
time = time.AddDays(3);
}
// Return the week of our adjusted day
return CultureInfo.InvariantCulture.Calendar.GetWeekOfYear(time, CalendarWeekRule.FirstFourDayWeek, DayOfWeek.Monday);
}