欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C# ToString()日期格式

程序员文章站 2022-08-10 08:57:24
C# ToString()日期格式 ToString:2016/9/27 0:00:00ToString("yyyy/MM/dd"):2016/09/27ToString("yyyy-MM-dd"):2016-09-27ToString("yyyy.MM.dd"):2016.09.27ToStrin ......

c# tostring()日期格式

 

tostring:2016/9/27 0:00:00
tostring("yyyy/mm/dd"):2016/09/27
tostring("yyyy-mm-dd"):2016-09-27
tostring("yyyy.mm.dd"):2016.09.27
tostring("dd/mm/yyyy"):27/09/2016
tostring("dd-mm-yyyy"):27-09-2016
tostring("yyyy年mm月dd日"):2016年09月27日

tostring("yyyy-mm-dd hh:mm:ss.fff"));  2016-09-27 01:02:03.001   // fff 越多精度越高

tostring("yyyy-mm-dd hh:mm:ss:ms")); 2016-09-27 01:02:03:234

 

c# tostring()日期格式