Himall商城类型帮助类将string类型转换成datetime类型
#region 转DateTime
///
/// 将string类型转换成datetime类型
///
/// 目标字符串
/// 默认值
///
public static DateTime StringToDateTime(string s, DateTime defaultValue)
{
if (!string.IsNullOrWhiteSpace(s))
{
DateTime result;
if (DateTime.TryParse(s, out result))
return result;
}
return defaultValue;
}
///
/// 将string类型转换成datetime类型
///
/// 目标字符串
///