Tagged Questions
7
votes
6answers
616 views
How to test if a DateTime is between 2 days of week (DayOfWeek)
In C#, given an arbitrary set of DayOfWeek end points (like, DayOfWeek.Friday and DayOfWeek.Sunday) how would one test if an arbitrary date falls between those two days, inclusive?
Example:
// ...
6
votes
3answers
2k views
Looping through the days of the week inside of C# TimeSpan Class
I'm trying to loop through EACH DAYof the WEEK between 2 time periods
DateTime start = new DateTime(2010, 1, 1);
DateTime end = new DateTime(2011, 12, 12);
I have managed to get the number of ...
6
votes
3answers
6k views
Math with Enums (e.g. DayOfWeek) in C#
Why is it that the following code won't work:
endDate.AddDays(7-endDate.DayOfWeek);
While this will:
endDate.AddDays(0-endDate.DayOfWeek + 7);
?
(By "won't work" I mean results in the following ...
4
votes
4answers
2k views
get nth weekday of month in C# [closed]
Possible Duplicate:
How do I determine if a given date is Nth weekday of the month?
How do i get the nth weekday of the month?
For ex.:
2nd Monday of "July 2010" = 07/12/2010.
Looking ...
4
votes
2answers
980 views
C#: Set initial DayOfWeek as Monday not Sunday
Is there a way to set the first DayOfWeek as Monday = 0 not Sunday?
(int)dateList[0].DayOfWeek == 0) // 0 = Sunday
3
votes
3answers
333 views
Can Calendar.GetDayOfWeek() return (DayOfWeek)7?
I'm reviewing some code and found this bit (rewritten):
if ((int)CultureInfo.CurrentCulture.Calendar.GetDayOfWeek(someDate) == 7) ...
I would think this condition always returns false since ...
3
votes
4answers
822 views
C#: Finding Out Which Monday Is The 3rd Monday Of The Month?
If I'm writing some C# code that runs through a year of dates (iterating by day) and want something special to happen every 3rd Monday of the month, how can I accomplish this?
In other words, what is ...
2
votes
4answers
3k views
Equivalent of WeekDay Function of VB6 in C#
I have to convert some of my VB6 Code to C# , In my VB6 I am having code like
dim I as Long
I = Weekday(Now, vbFriday)
I want equivalent of the same in C#
Can any one Help ?
1
vote
1answer
193 views
c#, to which week does the date fall. even or odd? given the start and end of session “working session”
note
try to give examples which also satisfy the ISO standards.
that is
week 1 for a given year is the week that contains the first Thursday in the year.
by ISO 8601
which year e.g 2010,1998,..
...
0
votes
1answer
204 views
C# Cultures: Localize DayOfWeek?
How do I localize a DayOfWeek other than today?
The following works just fine for the current day:
DateTime.Now.ToString("dddd", new CultureInfo("it-IT"));
But how can I localize all days of the ...
0
votes
6answers
751 views
Get day from DateTime using C#
Silly question. Given a date in a datetime and I know it's tuesday for instance how do i know its tue=2 and mon=1 etc...
Thanks
0
votes
2answers
422 views
Grouping Months of a particular Time span together using DateTime
public static string TimeLine2(this HtmlHelper helper, string myString2)
{
StringBuilder myString3 = new StringBuilder();
DateTime start = new DateTime(2010, 1, 1);
DateTime end = new ...
0
votes
5answers
2k views
DateTime Object Representing Day of Week
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 ...