Boo.Lang.Compiler.TypeSystem.CallableSignature.Equals C# (CSharp) Method

Equals() public method

public Equals ( object other ) : bool
other object
return bool
        public override bool Equals(object other)
        {
            CallableSignature rhs = other as CallableSignature;
            if (null == rhs
                || !_returnType.Equals(rhs._returnType)
                || _acceptVarArgs != rhs._acceptVarArgs)
                return false;

            return AreSameParameters(_parameters, rhs._parameters);
        }