首页 > 代码库 > c# 字符串格式化为日期格式

c# 字符串格式化为日期格式

         string s = "20160822 9:56";            string dt = DateTime.ParseExact(s, "yyyyMMdd H:mm", null).ToString("yyyy-MM-dd H:mm");            Response.Write(dt);

 

c# 字符串格式化为日期格式