c#中 时间格式化
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#中 时间格式化相关的知识,希望对你有一定的参考价值。
一、//格式化为DateTime nowdate = nowdate.Substring(0, 4) + "-" + nowdate.Substring(4, 2) + "-" + nowdate.Substring(6, 2) + " " + nowdate.Substring(8, 2) + ":" + nowdate.Substring(10, 2) + ":" + nowdate.Substring(12, 2); DateTime DTnowdate = Convert.ToDateTime(nowdate); 二、 把字符串20160620093031转换成2016/6/20 9:30:31 string TarStr = "yyyyMMddHHmmss"; //注意这里用到HH IFormatProvider format = new System.Globalization.CultureInfo("zh-CN"); DateTime MyDate = DateTime.ParseExact(datetime, TarStr, format);
以上是关于c#中 时间格式化的主要内容,如果未能解决你的问题,请参考以下文章
此 Canon SDK C++ 代码片段的等效 C# 代码是啥?
vscode用啥符号把某一段代码包起来,类似C#的#region?