vote up 0 vote down star

Hello

I was wondering if you guys know how to get the date of currents week's monday based on todays date?

i.e 2009-11-03 passed in and 2009-11-02 gets returned back

/M

flag

1  
Have a look at this question: stackoverflow.com/questions/38039/… – tomlog Nov 3 at 7:53
Dupe: stackoverflow.com/questions/38039/… – Shay Erlichmen Nov 3 at 7:58

3 Answers

vote up 9 vote down check

This is what i use (probably not internationalised):

DateTime input = //...
int delta = DayOfWeek.Monday - input.DayOfWeek;
DateTime monday = input.AddDays(delta);
link|flag
+1 - nice way to avoid the unnecessary loop – Fredrik Mörk Nov 3 at 7:57
Yes, indeed: Not internationalized. Monday is not always the first day of week. – Serge - appTranslator Nov 3 at 7:58
Indeed, good solution without a loop. – Konamiman Nov 3 at 8:01
4  
You can get the first day of week using: CultureInfo.CurrentCulture.DateTimeFormat.FirstDayOfWeek – Shay Erlichmen Nov 3 at 8:03
2  
Actually the first day of the week according to culture is of no interest in this case; the OP wants the monday of the week, not the first day of the week. – Fredrik Mörk Nov 3 at 8:28
show 1 more comment
vote up 1 vote down

Try this:

public DateTime FirstDayOfWeek(DateTime date)
{
    var candidateDate=date;
    while(candidateDate.DayOfWeek!=DayOfWeek.Monday) {
        candidateDate=candidateDate.AddDays(-1);
    }
    return candidateDate;
}

EDIT for completeness: overload for today's date:

public DateTime FirstDayOfCurrentWeek()
{
    return FirstDayOfWeek(DateTime.Today);
}
link|flag
Why looping??, there are ways to-do it without a loop. See answers below. – Shay Erlichmen Nov 3 at 7:59
vote up 0 vote down

Something like this would work

DateTime dt = DateTime.Now;
while(dt.DayOfWeek != DayOfWeek.Monday) dt = dt.AddDays(-1);

I'm sure there is a nicer way tho :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.