Beagrep.Util.FileSystem.ExistsByDateTime C# (CSharp) Метод

ExistsByDateTime() публичный статический Метод

public static ExistsByDateTime ( System.DateTime date ) : bool
date System.DateTime
Результат bool
        public static bool ExistsByDateTime(DateTime date)
        {
            if (date != nonexistent_file_datetime)
                return true;
            else
                return false;
        }