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

Equals() protected method

protected Equals ( InterpretedScript other ) : bool
other InterpretedScript
return bool
        protected bool Equals(InterpretedScript other)
        {
            if (other == null) return false;
            return base.Equals(other) &&
                   Equals(InterpreterVersions, other.InterpreterVersions);
        }

Same methods

InterpretedScript::Equals ( object obj ) : bool