3

有没有更好的方法来重新排列

DateTimeFormat.DayNames

根据

DateTimeFormat.FirstDayOfWeek

所以如果

DateTimeFormat.FirstDayOfWeek = 1

dayNames 包含 mon,tue,wed, ...
insted of son,mon,tue, ...
我目前正在使用:

CultureInfo culture = System.Globalization.CultureInfo.CurrentUICulture;
string[] DayNames = culture.DateTimeFormat.DayNames;
int FirstDayOfWeek = (int)culture.DateTimeFormat.FirstDayOfWeek;
int daysInMonth = DateTime.DaysInMonth(year, month);
string[] tempdays = new string[7];
for (int i = 0; i <= DayNames.GetUpperBound(0); i++)
{
    tempdays[i] = DayNames[i == 0 ? FirstDayOfWeek : 
                           (i == 6 - FirstDayOfWeek ? 6 : 
                           i > 6 - FirstDayOfWeek ? 0 != (6 - (i + (FirstDayOfWeek - 1))) ? 
                           (6 - (i + (FirstDayOfWeek - 1))) * -1 : 
                           6 - (i + (FirstDayOfWeek - 1)) : i + FirstDayOfWeek)];
}
4

1 回答 1

4

您已经有效地实现了模运算符,因此您可以将表达式简化为

tempdays[i] = DayNames[ (FirstDayOfWeek + i) % 7 ];
于 2009-08-28T11:43:25.927 回答