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
|
1
|
|||||
|
|
|
To make the answer more complete:
|
|||
|
|
|
If you want to know the day of the week for your code to do something with it, If you want to display the day of week to the user, |
|||
|
|
|
for any given date:
|
||
|
|
|
|
You're looking for the DayOfWeek property. Here's the msdn article. |
||
|
|
|
|
|
||
|
|
|
|
DateTime.Now.DayOfWeek |
||
|
|