Baseline.FileSet.Equals C# (CSharp) Method

Equals() public method

public Equals ( FileSet other ) : bool
other FileSet
return bool
        public bool Equals(FileSet other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.Include, Include) && Equals(other.Exclude, Exclude) && other.DeepSearch.Equals(DeepSearch);
        }

Same methods

FileSet::Equals ( object obj ) : bool