Languages
[Edit]
EN

C# / .NET - get integer value of day of week

7 points
Created by:
Mohammad-Oneal
327

In C# / .NET it is possible to get integer value of day of week in following way.

DateTime.DayOfWeek property example

DateTime time = DateTime.Now;
CultureInfo culture = CultureInfo.InvariantCulture;

Console.WriteLine(time.ToString("dddd, dd MMMM yyyy HH:mm", culture));
Console.WriteLine((int)time.DayOfWeek);

Output:

Sunday, 18 August 2019 15:31
0
 Notes:
  • To get day number it is necessary to make casting to integer.
  • Days are counted from 0 (Sunday) to 6 (Saturday).

References

  1. DateTime.DayOfWeek Property - Microsoft Docs
  2. DayOfWeek Enum - Microsoft Docs
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join