ZeroInstall.Store.Model.TargetBase.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( TargetBase other ) : bool
other TargetBase
return bool
        protected bool Equals(TargetBase other)
        {
            if (other == null) return false;
            return base.Equals(other) && _languages.SetEquals(other._languages) && other.Architecture == Architecture;
        }