public static System.DateTime ObjectToDateTime(object o, System.DateTime defaultValue) { if (o != null) { return(TypeUtil.StringToDateTime(o.ToString(), defaultValue)); } return(defaultValue); }
public static System.DateTime StringToDateTime(string s) { return(TypeUtil.StringToDateTime(s, System.DateTime.Now)); }