System.Linq.Parallel.NullableDoubleAverageAggregationOperator.NullableDoubleAverageAggregationOperatorEnumerator.NullableDoubleAverageAggregationOperatorEnumerator C# (CSharp) Method

NullableDoubleAverageAggregationOperatorEnumerator() private method

private NullableDoubleAverageAggregationOperatorEnumerator ( System.Linq.Parallel.QueryOperatorEnumerator source, int partitionIndex, CancellationToken cancellationToken ) : System.Collections.Generic
source System.Linq.Parallel.QueryOperatorEnumerator
partitionIndex int
cancellationToken CancellationToken
return System.Collections.Generic
            internal NullableDoubleAverageAggregationOperatorEnumerator(QueryOperatorEnumerator<double?, TKey> source, int partitionIndex,
                CancellationToken cancellationToken) :
                base(partitionIndex, cancellationToken)
            {
                Contract.Assert(source != null);
                m_source = source;
            }
NullableDoubleAverageAggregationOperator.NullableDoubleAverageAggregationOperatorEnumerator