How to get the integer value of day of week

前端 未结 9 709
太阳男子
太阳男子 2020-12-02 18:15

How do I get the day of a week in integer format? I know ToString will return only a string.

DateTime ClockInfoFromSystem = DateTime.Now;
int day1;
string d         


        
9条回答
  •  我在风中等你
    2020-12-02 18:24

    Another way to get Monday with integer value 1 and Sunday with integer value 7

    int day = ((int)DateTime.Now.DayOfWeek + 6) % 7 + 1;

提交回复
热议问题