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

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool
            public override bool Equals(object obj)
            {
                return ((ArrayHash)obj)._type == _type && ((ArrayHash)obj)._rank == _rank;
            }
TypeSystemServices.ArrayHash