如何将DateTime类型转换成String类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将DateTime类型转换成String类型相关的知识,希望对你有一定的参考价值。
参考技术A string time='2012-06-09 22:40'你的string类型应该符合时间的格式,否则转换时有可能出现错误
datetime newtime= convert.todatetime(time); 参考技术B DateTime dt=new DateTime();
string s=dt.ToString();
本回答被提问者和网友采纳
以上是关于如何将DateTime类型转换成String类型的主要内容,如果未能解决你的问题,请参考以下文章
C# 无法将类型 system.DateTime转换成 string[]
String str=“2011-11-11 22:22:22” 如何把str转换成datetime类型存入mysql中