System.Collections.CompatibleComparer.GetHashCode C# (CSharp) 메소드

GetHashCode() 공개 메소드

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

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