48 references to Select
System.Core (48)
System\Linq\Parallel\Enumerables\ParallelQuery.cs (2)
104return ParallelEnumerable.Select<TSource, TCastTo>(this, elem => (TCastTo)(object)elem); 113.Select<TSource, TCastTo>(elem => (TCastTo)(object)elem);
System\Linq\ParallelEnumerable.cs (46)
1466.Select<IGrouping<TKey, TSource>, TResult>(delegate(IGrouping<TKey, TSource> grouping) { return resultSelector(grouping.Key, grouping); }); 1496return source.GroupBy<TSource, TKey>(keySelector, comparer).Select<IGrouping<TKey, TSource>, TResult>( 1527.Select<IGrouping<TKey, TElement>, TResult>(delegate(IGrouping<TKey, TElement> grouping) { return resultSelector(grouping.Key, grouping); }); 1558.Select<IGrouping<TKey, TElement>, TResult>(delegate(IGrouping<TKey, TElement> grouping) { return resultSelector(grouping.Key, grouping); }); 2272return source.Select(selector).Sum(); 2296return source.Select(selector).Sum(); 2320return source.Select(selector).Sum(); 2344return source.Select(selector).Sum(); 2366return source.Select(selector).Sum(); 2388return source.Select(selector).Sum(); 2410return source.Select(selector).Sum(); 2432return source.Select(selector).Sum(); 2456return source.Select(selector).Sum(); 2480return source.Select(selector).Sum(); 2758return source.Select<TSource, int>(selector).Min<int>(); 2780return source.Select<TSource, int?>(selector).Min<int?>(); 2805return source.Select<TSource, long>(selector).Min<long>(); 2827return source.Select<TSource, long?>(selector).Min<long?>(); 2852return source.Select<TSource, float>(selector).Min<float>(); 2874return source.Select<TSource, float?>(selector).Min<float?>(); 2899return source.Select<TSource, double>(selector).Min<double>(); 2921return source.Select<TSource, double?>(selector).Min<double?>(); 2946return source.Select<TSource, decimal>(selector).Min<decimal>(); 2968return source.Select<TSource, decimal?>(selector).Min<decimal?>(); 2994return source.Select<TSource, TResult>(selector).Min<TResult>(); 3261return source.Select<TSource, int>(selector).Max<int>(); 3283return source.Select<TSource, int?>(selector).Max<int?>(); 3308return source.Select<TSource, long>(selector).Max<long>(); 3330return source.Select<TSource, long?>(selector).Max<long?>(); 3355return source.Select<TSource, float>(selector).Max<float>(); 3377return source.Select<TSource, float?>(selector).Max<float?>(); 3402return source.Select<TSource, double>(selector).Max<double>(); 3424return source.Select<TSource, double?>(selector).Max<double?>(); 3449return source.Select<TSource, decimal>(selector).Max<decimal>(); 3471return source.Select<TSource, decimal?>(selector).Max<decimal?>(); 3497return source.Select<TSource, TResult>(selector).Max<TResult>(); 3751return source.Select(selector).Average(); 3775return source.Select(selector).Average(); 3802return source.Select(selector).Average(); 3826return source.Select(selector).Average(); 3851return source.Select(selector).Average(); 3873return source.Select(selector).Average(); 3898return source.Select(selector).Average(); 3920return source.Select(selector).Average(); 3945return source.Select(selector).Average(); 3967return source.Select(selector).Average();