How to display short date from DateTime field in label?

后端 未结 4 1785
走了就别回头了
走了就别回头了 2021-01-14 09:13

I have a DateTime field in my SQL Server DB, and I would like to display just the date in short date form on a label in a WinForm (C#). I still get 06/01/2013 12:00:00, thou

4条回答
  •  耶瑟儿~
    2021-01-14 09:53

    You can also use:

    string shortDate = DateTime.Now.ToString("yyyy-MM-dd");

    Change the yyyy-MM-dd format for the one you're looking for.

提交回复
热议问题