示例#1
0
        protected override bool EqualsInherited(DriveFolderBase other)
        {
            if (!(other is DriveRootFolder otherTyped))
            {
                return(false);
            }

            return(true);
        }
示例#2
0
        protected override bool EqualsInherited(DriveFolderBase other)
        {
            if (!(other is DriveFolder otherTyped))
            {
                return(false);
            }

            return(this.Name == otherTyped.Name &&
                   this.Src == otherTyped.Src &&
                   this.Overwrite == otherTyped.Overwrite &&
                   this.Recursive == otherTyped.Recursive &&
                   this.IncludedExtensions == otherTyped.IncludedExtensions &&
                   this.ExcludedExtensions == otherTyped.ExcludedExtensions
                   );
        }