ZeroInstall.Publish.EntryPoints.DotNetExe.Equals C# (CSharp) Method

Equals() private method

private Equals ( DotNetExe other ) : bool
other DotNetExe
return bool
        private bool Equals(DotNetExe other)
        {
            return base.Equals(other) &&
                   MinimumRuntimeVersion == other.MinimumRuntimeVersion &&
                   RuntimeType == other.RuntimeType &&
                   ExternalDependencies == other.ExternalDependencies;
        }

Same methods

DotNetExe::Equals ( object obj ) : bool