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

Equals() public method

public Equals ( object other ) : bool
other object
return bool
            public override bool Equals(object other)
            {
                Candidate score = other as Candidate;
                return null == score
                    ? false
                    : Method == score.Method;
            }