How can I convert a number between 1 and 7 into a DateTime object in C# which represents the day of the week? The numbers are coming from a XML file which I am parsing. I am retrieving each instance of a field containing a number between 1 and 7 which represents a day of the week between Sunday and Saturday.
feedback
|
|
I would assume casting to a DayOfWeek object would give you a day of the week
As far as a DateTime object goes, the object represents a specific day, not necessarily a random day of the week. You may try adding a # of days to a specific date if this is what you're trying to achieve. http://msdn.microsoft.com/en-us/library/system.dayofweek.aspx | |||
|
feedback
|
|
In order to get a There is a
If you need an actual
This will give you a DateTime for the next occuring instance of the day of the week you're describing. | |||
|
feedback
|
|
DayOfWeek.Sunday is zero, so you could start with an arbitrary fixed date that you know to be Sunday, and add a value between 0 and 6:
I'm not sure why you would want this though. If you only want it to get a localized version of the day of the week as in:
an alternative would be to use DateTimeFormatInfo.DayNames or DateTimeFormatInfo.AbbreviatedDayNames for the culture you want. | |||
|
feedback
|
|
A
Else I agree with Adam Robinson's answer - if you just want to hold the day of a week, stick with the DayOfWeek enum (zero is sunday) instead of using an integer. | ||||
|
feedback
|
|
See this question: http://stackoverflow.com/questions/764046/building-a-datetime-object-for-sql-database-insert/764172#764172 | |||
|
feedback
|