How do I find the Start of the week (Both Sunday and Monday) knowing just the current time in C#.NET
Something like:
DateTime.Now.StartWeek(Monday);
|
3
|
|||
|
|
|
|
An extension method? They're the answer to everything you know! ;)
Which is used thusly:
|
||
|
|
|
|
A little more verbose and culture-aware:
|
|||
|
|
|
Let's combine the culture-safe answer and the extension method answer:
|
||
|
|
|
This would give you the preceding Sunday (I think):
Skizz |
||
|
|
|
|
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:-
|
||
|
|
|
|
using Fluent DateTime http://fluentdatetime.codeplex.com/
|
||
|
|
|
|
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:
|
|||
|
|
|
|
Would give you midnight on the 1st Sunday of the week,
gives you the 1st Monday at midnight |
||
|
|
|
|
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 |
|||
|
|
|
|
@Sarcastic Thanks for the excellent and elegant answer which meets my needs exactly :) |
||
|
|
|
|
public static System.DateTime getstartweek() { System.DateTime dt = System.DateTime.Now; System.DayOfWeek dmon = System.DayOfWeek.Monday; int span = dt.DayOfWeek - dmon; dt = dt.AddDays(-span); return dt; } |
||
|
|
|
|
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. |
||
|
|