本文介绍了系统常数为天的一个星期的数目(7)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
任何人都可以发现,在.NET框架限定在一个星期(7)天数的常数β
Can anyone find a constant in the .NET framework that defines the number of days in a week (7)?
DateTime.DaysInAWeek // Something like this???
当然,我可以定义我自己,但我宁愿不要,如果它在已经存在的地方。
Of course I can define my own, but I'd rather not if it's somewhere in there already.
我在找这个,因为我需要让用户从DropDownList中列表中选择一个星期(按日期,而不是周数)。
I am looking for this because I need to allow the user to select a week (by date, rather than week number) from a list in a DropDownList.
推荐答案
您也许可以使用System.Globalization.DateTimeFormatInfo.CurrentInfo.DayNames.Length.
You could probably use System.Globalization.DateTimeFormatInfo.CurrentInfo.DayNames.Length.
这篇关于系统常数为天的一个星期的数目(7)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!