ATMLUtilitiesLibrary.UTRSDateUtils.IsGoodDate C# (CSharp) Méthode

IsGoodDate() public static méthode

public static IsGoodDate ( System.DateTime date ) : bool
date System.DateTime
Résultat bool
        public static bool IsGoodDate( DateTime date )
        {
            return !date.Equals( DateTime.MinValue ) && !date.Equals( DateTime.MaxValue );
        }
UTRSDateUtils