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

Equals() protected method

protected Equals ( Java other ) : bool
other Java
return bool
        protected bool Equals(Java other)
        {
            if (other == null) return false;
            return base.Equals(other) &&
                   Equals(MinimumRuntimeVersion, other.MinimumRuntimeVersion) &&
                   ExternalDependencies == other.ExternalDependencies;
        }

Same methods

Java::Equals ( object obj ) : bool