public static bool IsEmptyDate(object value)
 {
     if (IsNull(value))
     {
         return(true);
     }
     if (value is string)
     {
         return(Fix.ParseStringToDate(value as string).IsEmpty());
     }
     return(Fix.ParseStringToDate(value.ToString()).IsEmpty());
 }
예제 #2
0
 public static bool IsDate(this string value)
 {
     return(Fix.ParseStringToDate(value) != null);
 }