Click here to Skip to main content
15,885,365 members
Home / Discussions / C#
   

C#

 
AnswerRe: DateTime, DayOfWeek in range comparison [modified] Pin
#realJSOP2-May-08 6:35
mve#realJSOP2-May-08 6:35 
GeneralRe: DateTime, DayOfWeek in range comparison Pin
PIEBALDconsult2-May-08 7:39
mvePIEBALDconsult2-May-08 7:39 
GeneralRe: DateTime, DayOfWeek in range comparison Pin
#realJSOP2-May-08 7:45
mve#realJSOP2-May-08 7:45 
GeneralRe: DateTime, DayOfWeek in range comparison Pin
#realJSOP2-May-08 8:15
mve#realJSOP2-May-08 8:15 
GeneralRe: DateTime, DayOfWeek in range comparison Pin
PIEBALDconsult2-May-08 8:46
mvePIEBALDconsult2-May-08 8:46 
AnswerRe: DateTime, DayOfWeek in range comparison Pin
PIEBALDconsult2-May-08 7:28
mvePIEBALDconsult2-May-08 7:28 
GeneralRe: DateTime, DayOfWeek in range comparison Pin
#realJSOP2-May-08 7:43
mve#realJSOP2-May-08 7:43 
AnswerRe: DateTime, DayOfWeek in range comparison Pin
#realJSOP2-May-08 8:10
mve#realJSOP2-May-08 8:10 
Ignore my first post. This is the best way (notice no bizarre culture crap going on):

DayOfWeek from = DayOfWeek.Thursday;
DayOfWeek to   = DayOfWeek.Tuesday;

DayOfWeek currentDay = DayOfWeek.Wednesday;

bool inRange = (currentDay >= from || currentDay <= to);


Notice that I'm using OR instead of AND. If you make currentDay Wednesday, inRange will be false. If you make it any other day, it will be true.

It's kind of pointless to do a Sunday-Saturday (or similar) comparison because any date will fall into the range. BTW, the comparison above also works for from=Saturday and to=Sunday.


"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001


GeneralRe: DateTime, DayOfWeek in range comparison Pin
PIEBALDconsult2-May-08 9:13
mvePIEBALDconsult2-May-08 9:13 
GeneralRe: DateTime, DayOfWeek in range comparison Pin
PIEBALDconsult2-May-08 18:55
mvePIEBALDconsult2-May-08 18:55 
GeneralRe: DateTime, DayOfWeek in range comparison Pin
#realJSOP3-May-08 0:26
mve#realJSOP3-May-08 0:26 
GeneralRe: DateTime, DayOfWeek in range comparison Pin
PIEBALDconsult3-May-08 5:09
mvePIEBALDconsult3-May-08 5:09 
GeneralRe: DateTime, DayOfWeek in range comparison Pin
#realJSOP4-May-08 4:02
mve#realJSOP4-May-08 4:02 
GeneralRe: DateTime, DayOfWeek in range comparison Pin
PIEBALDconsult4-May-08 5:34
mvePIEBALDconsult4-May-08 5:34 
QuestionKeypress event Pin
D i x y2-May-08 2:38
D i x y2-May-08 2:38 
AnswerRe: Keypress event Pin
John Ad2-May-08 3:54
John Ad2-May-08 3:54 
AnswerRe: Keypress event Pin
PIEBALDconsult2-May-08 8:22
mvePIEBALDconsult2-May-08 8:22 
GeneralRe: Keypress event Pin
Adeel Chaudhry2-May-08 11:19
Adeel Chaudhry2-May-08 11:19 
GeneralRe: Keypress event Pin
PIEBALDconsult2-May-08 15:26
mvePIEBALDconsult2-May-08 15:26 
GeneralRe: Keypress event Pin
Adeel Chaudhry3-May-08 0:24
Adeel Chaudhry3-May-08 0:24 
QuestionExport Issue Pin
MumbleB2-May-08 2:30
MumbleB2-May-08 2:30 
AnswerRe: Export Issue Pin
Judah Gabriel Himango2-May-08 5:37
sponsorJudah Gabriel Himango2-May-08 5:37 
GeneralRe: Export Issue Pin
MumbleB2-May-08 5:45
MumbleB2-May-08 5:45 
AnswerRe: Export Issue Pin
Big Daddy Farang2-May-08 5:47
Big Daddy Farang2-May-08 5:47 
GeneralRe: Export Issue Pin
MumbleB2-May-08 5:54
MumbleB2-May-08 5:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.