摘要:
public static DateTime Str2Date(string value) { if (string.IsNullOrEmpty(value)) return DateTime.MinValue; else { DateTimeFormatInfo dtFormat = new DateTimeFormatInfo(); dtFormat.ShortDatePattern = "dd-MM-yy"; ... 阅读全文
posted @ 2013-01-10 10:30
717806198
阅读(182)
评论(0)
推荐(0)