System.Collections.CompatibleComparer.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( Object obj ) : int
obj Object
return int
        public int GetHashCode(Object obj) {
            if( obj == null) {
                throw new ArgumentNullException("obj");
            }

            if (_hcp != null)
                return _hcp.GetHashCode(obj);
            return obj.GetHashCode();
        }