System.Linq.Parallel.WrapperEqualityComparer.GetHashCode C# (CSharp) Метод

GetHashCode() публичный Метод

public GetHashCode ( System.Linq.Parallel.Wrapper x ) : int
x System.Linq.Parallel.Wrapper
Результат int
        public int GetHashCode(Wrapper<T> x)
        {
            Debug.Assert(_comparer != null);
            return _comparer.GetHashCode(x.Value);
        }
    }