ATMLUtilitiesLibrary.UTRSDateUtils.IsGoodDate C# (CSharp) Method

IsGoodDate() public static method

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