vote up 3 vote down star
1

Hello Im using C# 3.5,

I have this : Datetime.Now(); or 23/10/2009
I want this : Friday

for local datetime (GMT-5) and using gregorian calendar.

Thanks

flag

after one of the exact same answers here is accepted ...do others clean up? :) – Xencor Oct 23 at 19:21
6 exact identical answers.. basically XD – Itay Oct 23 at 21:26

6 Answers

vote up 9 vote down check
//default locale
System.DateTime.Now.DayOfWeek.ToString();
//localized version
System.DateTime.Now.DayOfWeek.ToString("dddd");

To make the answer more complete:

link|flag
I wouldn't use the ToString. If you need it for comparisons or storage, just use the enum value. Otherwise, using the dddd format specifier as in Fredrik's answer is better for localization. – technophile Oct 23 at 21:00
vote up 8 vote down

If you want to know the day of the week for your code to do something with it, DateTime.Now.DayOfWeek will do the job.

If you want to display the day of week to the user, DateTime.Now.ToString("dddd") will give you the localized day name, according to the current culture (MSDN info on the "dddd" format string).

link|flag
+1 for the dddd format answer. – technophile Oct 23 at 20:59
vote up 2 vote down

DateTime.Now.DayOfWeek quite easy to guess actually.

for any given date:

   DateTime dt = //....
   DayOfWeek dow = dt.DayOfWeek; //enum
   string str = dow.ToString(); //string
link|flag
vote up 1 vote down

You're looking for the DayOfWeek property.

Here's the msdn article.

link|flag
vote up 1 vote down
DateTime now = DateTime.Now
string s = now.DayOfWeek.ToString();
link|flag
vote up 0 vote down

DateTime.Now.DayOfWeek

link|flag

Your Answer

Get an OpenID
or

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