编程语言
首页 > 编程语言> > C# string.Format格式化日期

C# string.Format格式化日期

作者:互联网

DateTime dt = new DateTime(2017,4,1,13,16,32,108);

string.Format("{0:y yy yyy yyyy}",dt); //17 17 2017 2017
string.Format("{0:M MM MMM MMMM}", dt);//4  04 四月 四月
string.Format("{0:d dd ddd dddd}", dt);//1  01 周六 星期六
string.Format("{0:t tt}", dt);//下 下午
string.Format("{0:H HH}", dt);//13 13
string.Format("{0:h hh}", dt);//1  01
string.Format("{0:m mm}", dt);//16 16
string.Format("{0:s ss}", dt);//32 32

标签:13,string,Format,C#,16,dt,2017
来源: https://www.cnblogs.com/man520515/p/16510502.html