public string CurrentDate
    {

        get
        {
            System.Globalization.CultureInfo cultureInfo = new System.Globalization.CultureInfo("zh-CN");
            string buffer = cultureInfo.DateTimeFormat.GetAbbreviatedDayName(System.DateTime.Now.DayOfWeek);
            string res1 = System.DateTime.Now.ToString("yyyy年MM月dd日 星期");

            res1 += buffer;
            return res1;

        }
    }

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-21
  • 2021-05-16
  • 2021-09-24
猜你喜欢
  • 2022-02-13
  • 2022-01-24
  • 2021-12-03
  • 2021-07-04
  • 2022-02-06
  • 2022-12-23
相关资源
相似解决方案