Orc.NuGetExplorer.Repository.Equals C# (CSharp) Method

Equals() private method

private Equals ( Repository other ) : bool
other Repository
return bool
        private bool Equals(Repository other)
        {
            return Id == other.Id && string.Equals(Name, other.Name) && string.Equals(Source, other.Source) && OperationType == other.OperationType;
        }

Same methods

Repository::Equals ( object obj ) : bool