How do I find the start of the week (both Sunday and Monday) knowing just the current time in C#?
Something like:
DateTime.Now.StartWeek(Monday);
|
feedback
|
|
Using an extension method. They're the answer to everything you know! ;)
Which is used thusly:
| |||||||||||||
feedback
|
|
A little more verbose and culture-aware:
| |||||||
feedback
|
|
Using Fluent DateTime:
| |||||||||
feedback
|
|
Let's combine the culture-safe answer and the extension method answer:
| |||||||||||||||
feedback
|
|
This would give you the preceding Sunday (I think):
Skizz | |||
|
feedback
|
|
This may be a bit of a hack, but you can cast the .DayOfWeek property to an int (it's an enum and since its not had its underlying data type changed it defaults to int) and use that to determine the previous start of the week. It appears the week specified in the DayOfWeek enum starts on Sunday, so if we subtract 1 from this value that'll be equal to how many days the Monday is before the current date. We also need to map the Sunday (0) to equal 7 so given 1 - 7 = -6 the Sunday will map to the previous Monday:-
The code for the previous Sunday is simpler as we don't have to make this adjustment:-
| |||
|
feedback
|
|
Thanks for the examples. I needed to always use the "CurrentCulture" first day of the week and for an array I needed to know the exact Daynumber.. so here are my first extensions:
| |||
|
feedback
|
|
The following method should return the DateTime that you want. Pass in true for Sunday being the first day of the week, false for Monday:
| ||||
|
feedback
|
|
You could use the excellent Umbrella library:
However, they do seem to have stored Monday as the first day of the week (see the property Edit: looking closer at the question, it looks like Umbrella might actually work for that too:
Although it's worth noting that if you ask for the previous Monday on a Monday, it'll give you seven days back. But this is also true if you use | ||||
|
feedback
|
|
This will return both the beginning of the week and the end of the week dates:
I have posted the complete code for calculating the begin/end of week, month, quarter and year on my blog ZamirsBlog | ||||
|
feedback
|
|
This would give you midnight on the first Sunday of the week:
This gives you the first Monday at midnight:
| ||||
|
feedback
|
|
Ugly but it at least gives the right dates back With start of week set by system:
Without:
| |||
|
feedback
|
|
try with this in c#.With this code you can get both first date and last date of a given week.Here Sunday is the first day and Saturday is the last day but you can set both day's according to your culture
| ||||
|
feedback
|
| ||||
|
feedback
|
|
I have a static class that does all this for me. Here's the week part:
I have methods for all these Date operations in the very same class, same for months, years, days, quarters, etc. hope it helps you. | |||
|
feedback
|