当前位置: 编程技术>.net/c#/asp.net
自定义时间格式转换代码分享
来源: 互联网 发布时间:2014-10-25
本文导语: 代码如下:/// /// 将日期字符串转换为日期类型 /// /// 形如"2012年5月14日"的日期字符串 private DateTime ParseDateTime(string strDateTime) { ////Like: string strDateTime = "2012...
代码如下:
///
/// 将日期字符串转换为日期类型
///
/// 形如"2012年5月14日"的日期字符串
private DateTime ParseDateTime(string strDateTime)
{
////Like: string strDateTime = "2012年5月14日";
DateTime dateTime;
if (DateTime.TryParseExact(strDateTime, "yyyy年M月d日", new System.Globalization.CultureInfo("en-US"), System.Globalization.DateTimeStyles.AssumeLocal, out dateTime))
{
return dateTime;
}
else
{
return DateTime.Today;
}
}