[Tizen] Add BuildTools 2.1.0-rc1-02804-05
[platform/upstream/coreclr.git] / Tools / dotnetcli / sdk / NuGetFallbackFolder / system.linq.parallel / 4.0.1 / ref / netstandard1.1 / zh-hans / System.Linq.Parallel.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Linq.Parallel</name>
5   </assembly>
6   <members>
7     <member name="T:System.Linq.OrderedParallelQuery`1">
8       <summary>表示已排序的并行序列。</summary>
9       <typeparam name="TSource">源集合中的元素的类型。</typeparam>
10     </member>
11     <member name="M:System.Linq.OrderedParallelQuery`1.GetEnumerator">
12       <summary>返回循环访问序列的枚举数。</summary>
13       <returns>循环访问序列的枚举数。</returns>
14     </member>
15     <member name="T:System.Linq.ParallelEnumerable">
16       <summary>提供一组用于查询实现 ParallelQuery{TSource} 的对象的方法。这是 <see cref="T:System.Linq.Enumerable" /> 的并行等效项。</summary>
17     </member>
18     <member name="M:System.Linq.ParallelEnumerable.Aggregate``3(System.Linq.ParallelQuery{``0},System.Func{``1},System.Func{``1,``0,``1},System.Func{``1,``1,``1},System.Func{``1,``2})">
19       <summary>对一个序列并行应用累加器函数。此重载在顺序实现中不可用。</summary>
20       <returns>已转换的累加器最终值。</returns>
21       <param name="source">要对其进行聚合的序列。</param>
22       <param name="seedFactory">一个返回初始累加器值的函数。</param>
23       <param name="updateAccumulatorFunc">要对分区中的每个元素调用的累加器函数。</param>
24       <param name="combineAccumulatorsFunc">要对每个分区中已生成的累加器结果调用的累加器函数。</param>
25       <param name="resultSelector">将累加器的最终值转换为结果值的函数。</param>
26       <typeparam name="TSource">
27         <paramref name="source" /> 中的元素的类型。</typeparam>
28       <typeparam name="TAccumulate">累加器值的类型。</typeparam>
29       <typeparam name="TResult">结果值的类型。</typeparam>
30       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
31       <exception cref="T:System.ArgumentNullException">
32         <paramref name="source" /> 或 <paramref name="seedFactory" /> 或 <paramref name="updateAccumulatorFunc" /> 或 <paramref name="combineAccumulatorsFunc" /> 或 <paramref name="resultSelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
33       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
34       <exception cref="T:System.InvalidOperationException">
35         <paramref name="source" /> 中不包含任何元素。</exception>
36     </member>
37     <member name="M:System.Linq.ParallelEnumerable.Aggregate``1(System.Linq.ParallelQuery{``0},System.Func{``0,``0,``0})">
38       <summary>对一个序列并行应用累加器函数。</summary>
39       <returns>累加器的最终值。</returns>
40       <param name="source">要对其进行聚合的序列。</param>
41       <param name="func">要对每个元素调用的累加器函数。</param>
42       <typeparam name="TSource">
43         <paramref name="source" /> 中的元素的类型。</typeparam>
44       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
45       <exception cref="T:System.ArgumentNullException">
46         <paramref name="source" /> 或 <paramref name="func" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
47       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
48       <exception cref="T:System.InvalidOperationException">
49         <paramref name="source" /> 中不包含任何元素。</exception>
50     </member>
51     <member name="M:System.Linq.ParallelEnumerable.Aggregate``2(System.Linq.ParallelQuery{``0},``1,System.Func{``1,``0,``1})">
52       <summary>对一个序列并行应用累加器函数。将指定的种子值用作累加器初始值。</summary>
53       <returns>累加器的最终值。</returns>
54       <param name="source">要对其进行聚合的序列。</param>
55       <param name="seed">累加器的初始值。</param>
56       <param name="func">要对每个元素调用的累加器函数。</param>
57       <typeparam name="TSource">
58         <paramref name="source" /> 中的元素的类型。</typeparam>
59       <typeparam name="TAccumulate">累加器值的类型。</typeparam>
60       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
61       <exception cref="T:System.ArgumentNullException">
62         <paramref name="source" /> 或 <paramref name="func" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
63       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
64       <exception cref="T:System.InvalidOperationException">
65         <paramref name="source" /> 中不包含任何元素。</exception>
66     </member>
67     <member name="M:System.Linq.ParallelEnumerable.Aggregate``3(System.Linq.ParallelQuery{``0},``1,System.Func{``1,``0,``1},System.Func{``1,``2})">
68       <summary>对一个序列并行应用累加器函数。将指定的种子值用作累加器的初始值,并使用指定的函数选择结果值。</summary>
69       <returns>已转换的累加器最终值。</returns>
70       <param name="source">要对其进行聚合的序列。</param>
71       <param name="seed">累加器的初始值。</param>
72       <param name="func">要对每个元素调用的累加器函数。</param>
73       <param name="resultSelector">将累加器的最终值转换为结果值的函数。</param>
74       <typeparam name="TSource">
75         <paramref name="source" /> 中的元素的类型。</typeparam>
76       <typeparam name="TAccumulate">累加器值的类型。</typeparam>
77       <typeparam name="TResult">结果值的类型。</typeparam>
78       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
79       <exception cref="T:System.ArgumentNullException">
80         <paramref name="source" /> 或 <paramref name="func" /> 或 <paramref name="resultSelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
81       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
82       <exception cref="T:System.InvalidOperationException">
83         <paramref name="source" /> 中不包含任何元素。</exception>
84     </member>
85     <member name="M:System.Linq.ParallelEnumerable.Aggregate``3(System.Linq.ParallelQuery{``0},``1,System.Func{``1,``0,``1},System.Func{``1,``1,``1},System.Func{``1,``2})">
86       <summary>对一个序列并行应用累加器函数。此重载在顺序实现中不可用。</summary>
87       <returns>已转换的累加器最终值。</returns>
88       <param name="source">要对其进行聚合的序列。</param>
89       <param name="seed">累加器的初始值。</param>
90       <param name="updateAccumulatorFunc">要对分区中的每个元素调用的累加器函数。</param>
91       <param name="combineAccumulatorsFunc">要对每个分区中已生成的累加器结果调用的累加器函数。</param>
92       <param name="resultSelector">将累加器的最终值转换为结果值的函数。</param>
93       <typeparam name="TSource">
94         <paramref name="source" /> 中的元素的类型。</typeparam>
95       <typeparam name="TAccumulate">累加器值的类型。</typeparam>
96       <typeparam name="TResult">结果值的类型。</typeparam>
97       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
98       <exception cref="T:System.ArgumentNullException">
99         <paramref name="source" /> 或 <paramref name="updateAccumulatorFunc" /> 或 <paramref name="combineAccumulatorsFunc" /> 或 <paramref name="resultSelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
100       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
101       <exception cref="T:System.InvalidOperationException">
102         <paramref name="source" /> 中不包含任何元素。</exception>
103     </member>
104     <member name="M:System.Linq.ParallelEnumerable.All``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Boolean})">
105       <summary>并行确定序列中的所有元素是否都满足条件。</summary>
106       <returns>如果源序列中的每个元素都通过指定谓词中的测试,或者序列为空,则为 true;否则为 false。</returns>
107       <param name="source">要对其应用谓词的元素所在的序列。</param>
108       <param name="predicate">用于测试每个元素是否满足条件的函数。</param>
109       <typeparam name="TSource">
110         <paramref name="source" /> 中的元素的类型。</typeparam>
111       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
112       <exception cref="T:System.ArgumentNullException">
113         <paramref name="source" /> 或 <paramref name="predicate" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
114       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
115     </member>
116     <member name="M:System.Linq.ParallelEnumerable.Any``1(System.Linq.ParallelQuery{``0})">
117       <summary>确定并行序列是否包含任何元素。</summary>
118       <returns>如果源序列包含任何元素,则为 true;否则为 false。</returns>
119       <param name="source">要检查是否为空的序列。</param>
120       <typeparam name="TSource">
121         <paramref name="source" /> 中的元素的类型。</typeparam>
122       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
123       <exception cref="T:System.ArgumentNullException">
124         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
125       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
126     </member>
127     <member name="M:System.Linq.ParallelEnumerable.Any``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Boolean})">
128       <summary>并行确定序列中的任何元素是否都满足条件。</summary>
129       <returns>如果源序列中的任何元素都通过指定谓词中的测试,则为 true;否则为 false。</returns>
130       <param name="source">将对其元素应用谓词的序列。</param>
131       <param name="predicate">用于测试每个元素是否满足条件的函数。</param>
132       <typeparam name="TSource">
133         <paramref name="source" /> 中的元素的类型。</typeparam>
134       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
135       <exception cref="T:System.ArgumentNullException">
136         <paramref name="source" /> 或 <paramref name="predicate" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
137       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
138     </member>
139     <member name="M:System.Linq.ParallelEnumerable.AsEnumerable``1(System.Linq.ParallelQuery{``0})">
140       <summary>将 <see cref="T:System.Linq.ParallelQuery`1" /> 转换为 <see cref="T:System.Collections.Generic.IEnumerable`1" /> 以强制对查询进行顺序计算。</summary>
141       <returns>类型为 <see cref="T:System.Collections.Generic.IEnumerable`1" /> 的输入序列。</returns>
142       <param name="source">要强制转换为 <see cref="T:System.Collections.Generic.IEnumerable`1" /> 的序列。</param>
143       <typeparam name="TSource">
144         <paramref name="source" /> 中的元素的类型。</typeparam>
145       <exception cref="T:System.ArgumentNullException">
146         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
147     </member>
148     <member name="M:System.Linq.ParallelEnumerable.AsOrdered(System.Linq.ParallelQuery)">
149       <summary>启用将数据源视为“已经排序”的处理方法,重写默认的将数据源视为“未经排序”的处理方法。只可以对由 AsParallel、ParallelEnumerable.Range 和 ParallelEnumerable.Repeat 返回的非泛型序列调用 AsOrdered。</summary>
150       <returns>将要维护后续查询运算符中的原始排序的源序列。</returns>
151       <param name="source">输入序列。</param>
152       <exception cref="T:System.ArgumentNullException">
153         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
154       <exception cref="T:System.InvalidOperationException">如果 <paramref name="source" /> 中不包含任何元素则会引发- 或 -在 AsOrdered 通过查询调用舍入时引发。他被允许在 <see cref="M:System.Linq.ParallelEnumerable.AsParallel(System.Collections.IEnumerable)" />,<see cref="M:System.Linq.ParallelEnumerable.Range(System.Int32,System.Int32)" /> 或 <see cref="M:System.Linq.ParallelEnumerable.Repeat``1(``0,System.Int32)" /> 之后立即调用。</exception>
155     </member>
156     <member name="M:System.Linq.ParallelEnumerable.AsOrdered``1(System.Linq.ParallelQuery{``0})">
157       <summary>启用将数据源视为“已经排序”的处理方法,重写默认的将数据源视为“未经排序”的处理方法。只可以对由 AsParallel、ParallelEnumerable.Range 和 ParallelEnumerable.Repeat 返回的泛型序列调用 AsOrdered。</summary>
158       <returns>将要维护后续查询运算符中的原始排序的源序列。</returns>
159       <param name="source">输入序列。</param>
160       <typeparam name="TSource">
161         <paramref name="source" /> 中的元素的类型。</typeparam>
162       <exception cref="T:System.ArgumentNullException">
163         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
164       <exception cref="T:System.InvalidOperationException">如果 <paramref name="source" /> 中不包含任何元素则会引发- 或 -<paramref name="source" /> 不是 AsParallel、ParallelEnumerable.Range 或 ParallelEnumerable.Repeat 之一时引发。</exception>
165     </member>
166     <member name="M:System.Linq.ParallelEnumerable.AsParallel``1(System.Collections.Concurrent.Partitioner{``0})">
167       <summary>启用查询的并行化,并由负责将输入序列拆分成各个分区的自定义分区程序指明其出处。</summary>
168       <returns>作为要绑定到 ParallelEnumerable 扩展方法的 ParallelQuery 的 <paramref name="source" />。</returns>
169       <param name="source">基于输入序列的分区程序。</param>
170       <typeparam name="TSource">
171         <paramref name="source" /> 中的元素的类型。</typeparam>
172       <exception cref="T:System.ArgumentNullException">
173         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
174     </member>
175     <member name="M:System.Linq.ParallelEnumerable.AsParallel``1(System.Collections.Generic.IEnumerable{``0})">
176       <summary>启用查询的并行化。</summary>
177       <returns>作为要绑定到 ParallelEnumerable 扩展方法的 <see cref="T:System.Linq.ParallelQuery`1" /> 的源。</returns>
178       <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> to convert to a <see cref="T:System.Linq.ParallelQuery`1" />.</param>
179       <typeparam name="TSource">
180         <paramref name="source" /> 中的元素的类型。</typeparam>
181       <exception cref="T:System.ArgumentNullException">
182         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
183     </member>
184     <member name="M:System.Linq.ParallelEnumerable.AsParallel(System.Collections.IEnumerable)">
185       <summary>启用查询的并行化。</summary>
186       <returns>作为要绑定到 ParallelEnumerable 扩展方法的 ParallelQuery 的源。</returns>
187       <param name="source">要转换为 <see cref="T:System.Linq.ParallelQuery" /> 的 <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
188       <exception cref="T:System.ArgumentNullException">
189         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
190     </member>
191     <member name="M:System.Linq.ParallelEnumerable.AsSequential``1(System.Linq.ParallelQuery{``0})">
192       <summary>将 <see cref="T:System.Linq.ParallelQuery`1" /> 转换为 <see cref="T:System.Collections.Generic.IEnumerable`1" /> 以强制对查询进行顺序计算。</summary>
193       <returns>作为要绑定到顺序扩展方法的 <see cref="T:System.Collections.Generic.IEnumerable`1" /> 的源。</returns>
194       <param name="source">要转换为 <see cref="T:System.Collections.Generic.IEnumerable`1" /> 的 <see cref="T:System.Linq.ParallelQuery`1" />。</param>
195       <typeparam name="TSource">
196         <paramref name="source" /> 中的元素的类型。</typeparam>
197       <exception cref="T:System.ArgumentNullException">
198         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
199     </member>
200     <member name="M:System.Linq.ParallelEnumerable.AsUnordered``1(System.Linq.ParallelQuery{``0})">
201       <summary>允许将中间查询视为元素之间未应用任何排序。</summary>
202       <returns>具有任意顺序的源序列。</returns>
203       <param name="source">输入序列。</param>
204       <typeparam name="TSource">
205         <paramref name="source" /> 中的元素的类型。</typeparam>
206       <exception cref="T:System.ArgumentNullException">
207         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
208     </member>
209     <member name="M:System.Linq.ParallelEnumerable.Average(System.Linq.ParallelQuery{System.Decimal})">
210       <summary>并行计算一个值序列的平均值。</summary>
211       <returns>值序列的平均值。</returns>
212       <param name="source">用于计算平均值的值序列。</param>
213       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
214       <exception cref="T:System.ArgumentNullException">
215         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
216       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
217       <exception cref="T:System.InvalidOperationException">
218         <paramref name="source" /> 中不包含任何元素。</exception>
219     </member>
220     <member name="M:System.Linq.ParallelEnumerable.Average(System.Linq.ParallelQuery{System.Double})">
221       <summary>并行计算一个值序列的平均值。</summary>
222       <returns>值序列的平均值。</returns>
223       <param name="source">用于计算平均值的值序列。</param>
224       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
225       <exception cref="T:System.ArgumentNullException">
226         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
227       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
228       <exception cref="T:System.InvalidOperationException">
229         <paramref name="source" /> 中不包含任何元素。</exception>
230     </member>
231     <member name="M:System.Linq.ParallelEnumerable.Average(System.Linq.ParallelQuery{System.Int32})">
232       <summary>并行计算一个值序列的平均值。</summary>
233       <returns>值序列的平均值。</returns>
234       <param name="source">用于计算平均值的值序列。</param>
235       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
236       <exception cref="T:System.ArgumentNullException">
237         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
238       <exception cref="T:System.AggregateException">序列中元素之和或数量大于 <see cref="F:System.Int32.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
239       <exception cref="T:System.InvalidOperationException">
240         <paramref name="source" /> 中不包含任何元素。</exception>
241     </member>
242     <member name="M:System.Linq.ParallelEnumerable.Average(System.Linq.ParallelQuery{System.Int64})">
243       <summary>并行计算一个值序列的平均值。</summary>
244       <returns>值序列的平均值。</returns>
245       <param name="source">用于计算平均值的值序列。</param>
246       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
247       <exception cref="T:System.ArgumentNullException">
248         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
249       <exception cref="T:System.AggregateException">序列中元素之和或数量大于 <see cref="F:System.Int32.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
250       <exception cref="T:System.InvalidOperationException">
251         <paramref name="source" /> 中不包含任何元素。</exception>
252     </member>
253     <member name="M:System.Linq.ParallelEnumerable.Average(System.Linq.ParallelQuery{System.Nullable{System.Decimal}})">
254       <summary>并行计算一个值序列的平均值。</summary>
255       <returns>值序列的平均值。</returns>
256       <param name="source">用于计算平均值的值序列。</param>
257       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
258       <exception cref="T:System.ArgumentNullException">
259         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
260       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
261       <exception cref="T:System.InvalidOperationException">
262         <paramref name="source" /> 中不包含任何元素。</exception>
263     </member>
264     <member name="M:System.Linq.ParallelEnumerable.Average(System.Linq.ParallelQuery{System.Nullable{System.Double}})">
265       <summary>并行计算一个值序列的平均值。</summary>
266       <returns>返回值序列的平均值。</returns>
267       <param name="source">源序列。</param>
268       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
269       <exception cref="T:System.ArgumentNullException">用于计算平均值的值序列。值序列的平均值。<paramref name="source" /> 是一个空引用(在 Visual Basic 中为 Nothing)。</exception>
270       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
271       <exception cref="T:System.InvalidOperationException">
272         <paramref name="source" /> 中不包含任何元素。</exception>
273     </member>
274     <member name="M:System.Linq.ParallelEnumerable.Average(System.Linq.ParallelQuery{System.Nullable{System.Int32}})">
275       <summary>并行计算一个值序列的平均值。</summary>
276       <returns>值序列的平均值。</returns>
277       <param name="source">用于计算平均值的值序列。</param>
278       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
279       <exception cref="T:System.ArgumentNullException">
280         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
281       <exception cref="T:System.AggregateException">序列中元素之和或数量大于 <see cref="F:System.Int32.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
282       <exception cref="T:System.InvalidOperationException">
283         <paramref name="source" /> 中不包含任何元素。</exception>
284     </member>
285     <member name="M:System.Linq.ParallelEnumerable.Average(System.Linq.ParallelQuery{System.Nullable{System.Int64}})">
286       <summary>并行计算一个值序列的平均值。</summary>
287       <returns>值序列的平均值。</returns>
288       <param name="source">用于计算平均值的值序列。</param>
289       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
290       <exception cref="T:System.ArgumentNullException">
291         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
292       <exception cref="T:System.AggregateException">序列中元素之和或数量大于 <see cref="F:System.Int32.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
293       <exception cref="T:System.InvalidOperationException">
294         <paramref name="source" /> 中不包含任何元素。</exception>
295     </member>
296     <member name="M:System.Linq.ParallelEnumerable.Average(System.Linq.ParallelQuery{System.Nullable{System.Single}})">
297       <summary>并行计算一个值序列的平均值。</summary>
298       <returns>值序列的平均值。</returns>
299       <param name="source">用于计算平均值的值序列。</param>
300       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
301       <exception cref="T:System.ArgumentNullException">
302         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
303       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
304       <exception cref="T:System.InvalidOperationException">
305         <paramref name="source" /> 中不包含任何元素。</exception>
306     </member>
307     <member name="M:System.Linq.ParallelEnumerable.Average(System.Linq.ParallelQuery{System.Single})">
308       <summary>并行计算一个值序列的平均值。</summary>
309       <returns>值序列的平均值。</returns>
310       <param name="source">用于计算平均值的值序列。</param>
311       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
312       <exception cref="T:System.ArgumentNullException">
313         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
314       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
315       <exception cref="T:System.InvalidOperationException">
316         <paramref name="source" /> 中不包含任何元素。</exception>
317     </member>
318     <member name="M:System.Linq.ParallelEnumerable.Average``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Decimal})">
319       <summary>并行计算一个值序列的平均值,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
320       <returns>值序列的平均值。</returns>
321       <param name="source">用于计算平均值的值序列。</param>
322       <param name="selector">应用于每个元素的转换函数。</param>
323       <typeparam name="TSource">
324         <paramref name="source" /> 中的元素的类型。</typeparam>
325       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
326       <exception cref="T:System.ArgumentNullException">
327         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
328       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
329       <exception cref="T:System.InvalidOperationException">
330         <paramref name="source" /> 中不包含任何元素。</exception>
331       <exception cref="T:System.OverflowException">(在 <see cref="T:System.AggregateException" /> 中作为内部异常引发)。<paramref name="selector" /> 函数返回一个大于元素类型的 MaxValue 的值。</exception>
332     </member>
333     <member name="M:System.Linq.ParallelEnumerable.Average``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Double})">
334       <summary>并行计算一个值序列的平均值,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
335       <returns>值序列的平均值。</returns>
336       <param name="source">用于计算平均值的值序列。</param>
337       <param name="selector">应用于每个元素的转换函数。</param>
338       <typeparam name="TSource">
339         <paramref name="source" /> 中的元素的类型。</typeparam>
340       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
341       <exception cref="T:System.ArgumentNullException">
342         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
343       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
344       <exception cref="T:System.InvalidOperationException">
345         <paramref name="source" /> 中不包含任何元素。</exception>
346       <exception cref="T:System.OverflowException">(在 <see cref="T:System.AggregateException" /> 中作为内部异常引发)。<paramref name="selector" /> 函数返回一个大于元素类型的 MaxValue 的值。</exception>
347     </member>
348     <member name="M:System.Linq.ParallelEnumerable.Average``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Int32})">
349       <summary>并行计算一个值序列的平均值,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
350       <returns>值序列的平均值。</returns>
351       <param name="source">用于计算平均值的值序列。</param>
352       <param name="selector">应用于每个元素的转换函数。</param>
353       <typeparam name="TSource">
354         <paramref name="source" /> 中的元素的类型。</typeparam>
355       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
356       <exception cref="T:System.ArgumentNullException">
357         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
358       <exception cref="T:System.AggregateException">序列中元素之和或数量大于 <see cref="F:System.Int32.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
359       <exception cref="T:System.InvalidOperationException">
360         <paramref name="source" /> 中不包含任何元素。</exception>
361       <exception cref="T:System.OverflowException">(在 <see cref="T:System.AggregateException" /> 中作为内部异常引发)。<paramref name="selector" /> 函数返回一个大于元素类型的 MaxValue 的值。</exception>
362     </member>
363     <member name="M:System.Linq.ParallelEnumerable.Average``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Int64})">
364       <summary>并行计算一个值序列的平均值,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
365       <returns>值序列的平均值。</returns>
366       <param name="source">用于计算平均值的值序列。</param>
367       <param name="selector">应用于每个元素的转换函数。</param>
368       <typeparam name="TSource">
369         <paramref name="source" /> 中的元素的类型。</typeparam>
370       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
371       <exception cref="T:System.ArgumentNullException">
372         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
373       <exception cref="T:System.AggregateException">序列中元素之和或数量大于 <see cref="F:System.Int32.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
374       <exception cref="T:System.InvalidOperationException">
375         <paramref name="source" /> 中不包含任何元素。</exception>
376       <exception cref="T:System.OverflowException">(在 <see cref="T:System.AggregateException" /> 中作为内部异常引发)。<paramref name="selector" /> 函数返回一个大于元素类型的 MaxValue 的值。</exception>
377     </member>
378     <member name="M:System.Linq.ParallelEnumerable.Average``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Decimal}})">
379       <summary>并行计算一个值序列的平均值,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
380       <returns>值序列的平均值。</returns>
381       <param name="source">用于计算平均值的值序列。</param>
382       <param name="selector">应用于每个元素的转换函数。</param>
383       <typeparam name="TSource">
384         <paramref name="source" /> 中的元素的类型。</typeparam>
385       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
386       <exception cref="T:System.ArgumentNullException">
387         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
388       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
389       <exception cref="T:System.InvalidOperationException">
390         <paramref name="source" /> 中不包含任何元素。</exception>
391       <exception cref="T:System.OverflowException">(在 <see cref="T:System.AggregateException" /> 中作为内部异常引发)。<paramref name="selector" /> 函数返回一个大于元素类型的 MaxValue 的值。</exception>
392     </member>
393     <member name="M:System.Linq.ParallelEnumerable.Average``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Double}})">
394       <summary>并行计算一个值序列的平均值,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
395       <returns>值序列的平均值。</returns>
396       <param name="source">用于计算平均值的值序列。</param>
397       <param name="selector">应用于每个元素的转换函数。</param>
398       <typeparam name="TSource">
399         <paramref name="source" /> 中的元素的类型。</typeparam>
400       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
401       <exception cref="T:System.ArgumentNullException">
402         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
403       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
404       <exception cref="T:System.InvalidOperationException">
405         <paramref name="source" /> 中不包含任何元素。</exception>
406       <exception cref="T:System.OverflowException">(在 <see cref="T:System.AggregateException" /> 中作为内部异常引发)。<paramref name="selector" /> 函数返回一个大于元素类型的 MaxValue 的值。</exception>
407     </member>
408     <member name="M:System.Linq.ParallelEnumerable.Average``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Int32}})">
409       <summary>并行计算一个值序列的平均值,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
410       <returns>值序列的平均值。</returns>
411       <param name="source">用于计算平均值的值序列。</param>
412       <param name="selector">应用于每个元素的转换函数。</param>
413       <typeparam name="TSource">
414         <paramref name="source" /> 中的元素的类型。</typeparam>
415       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
416       <exception cref="T:System.ArgumentNullException">
417         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
418       <exception cref="T:System.AggregateException">序列中元素之和或数量大于 <see cref="F:System.Int32.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
419       <exception cref="T:System.InvalidOperationException">
420         <paramref name="source" /> 中不包含任何元素。</exception>
421       <exception cref="T:System.OverflowException">(在 <see cref="T:System.AggregateException" /> 中作为内部异常引发)。<paramref name="selector" /> 函数返回一个大于元素类型的 MaxValue 的值。</exception>
422     </member>
423     <member name="M:System.Linq.ParallelEnumerable.Average``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Int64}})">
424       <summary>并行计算一个值序列的平均值,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
425       <returns>值序列的平均值。</returns>
426       <param name="source">用于计算平均值的值序列。</param>
427       <param name="selector">应用于每个元素的转换函数。</param>
428       <typeparam name="TSource">
429         <paramref name="source" /> 中的元素的类型。</typeparam>
430       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
431       <exception cref="T:System.ArgumentNullException">
432         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
433       <exception cref="T:System.AggregateException">序列中元素之和或数量大于 <see cref="F:System.Int64.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
434       <exception cref="T:System.InvalidOperationException">
435         <paramref name="source" /> 中不包含任何元素。</exception>
436       <exception cref="T:System.OverflowException">(在 <see cref="T:System.AggregateException" /> 中作为内部异常引发)。<paramref name="selector" /> 函数返回一个大于元素类型的 MaxValue 的值。</exception>
437     </member>
438     <member name="M:System.Linq.ParallelEnumerable.Average``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Single}})">
439       <summary>并行计算一个值序列的平均值,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
440       <returns>值序列的平均值。</returns>
441       <param name="source">用于计算平均值的值序列。</param>
442       <param name="selector">应用于每个元素的转换函数。</param>
443       <typeparam name="TSource">
444         <paramref name="source" /> 中的元素的类型。</typeparam>
445       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
446       <exception cref="T:System.ArgumentNullException">
447         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
448       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
449       <exception cref="T:System.InvalidOperationException">
450         <paramref name="source" /> 中不包含任何元素。</exception>
451       <exception cref="T:System.OverflowException">(在 <see cref="T:System.AggregateException" /> 中作为内部异常引发)。<paramref name="selector" /> 函数返回一个大于元素类型的 MaxValue 的值。</exception>
452     </member>
453     <member name="M:System.Linq.ParallelEnumerable.Average``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Single})">
454       <summary>并行计算一个值序列的平均值,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
455       <returns>值序列的平均值。</returns>
456       <param name="source">用于计算平均值的值序列。</param>
457       <param name="selector">应用于每个元素的转换函数。</param>
458       <typeparam name="TSource">
459         <paramref name="source" /> 中的元素的类型。</typeparam>
460       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
461       <exception cref="T:System.ArgumentNullException">
462         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
463       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
464       <exception cref="T:System.InvalidOperationException">
465         <paramref name="source" /> 中不包含任何元素。</exception>
466       <exception cref="T:System.OverflowException">(在 <see cref="T:System.AggregateException" /> 中作为内部异常引发)。<paramref name="selector" /> 函数返回一个大于元素类型的 MaxValue 的值。</exception>
467     </member>
468     <member name="M:System.Linq.ParallelEnumerable.Cast``1(System.Linq.ParallelQuery)">
469       <summary>将 ParallelQuery 的元素转换为指定的类型。</summary>
470       <returns>一个序列,其中包含已转换为指定类型的源序列的每个元素。</returns>
471       <param name="source">包含要转换的元素的序列。</param>
472       <typeparam name="TResult">
473         <paramref name="source" /> 中的元素要转换成的类型。</typeparam>
474       <exception cref="T:System.ArgumentNullException">
475         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
476       <exception cref="T:System.InvalidCastException">源序列的类型不能转换为 <paramref name="TResult" />。</exception>
477     </member>
478     <member name="M:System.Linq.ParallelEnumerable.Concat``1(System.Linq.ParallelQuery{``0},System.Collections.Generic.IEnumerable{``0})">
479       <summary>切勿调用此 Concat 重载。此方法已标记为过时,调用此方法时总是会引发 <see cref="T:System.NotSupportedException" />。</summary>
480       <returns>此重载总是会引发 <see cref="T:System.NotSupportedException" />。</returns>
481       <param name="first">未使用此参数。</param>
482       <param name="second">未使用此参数。</param>
483       <typeparam name="TSource">未使用此类型参数。</typeparam>
484       <exception cref="T:System.NotSupportedException">调用此方法时发生的异常。</exception>
485     </member>
486     <member name="M:System.Linq.ParallelEnumerable.Concat``1(System.Linq.ParallelQuery{``0},System.Linq.ParallelQuery{``0})">
487       <summary>连接两个并行序列。</summary>
488       <returns>一个序列,其中包含两个输入序列的已连接元素。</returns>
489       <param name="first">要连接的第一个序列。</param>
490       <param name="second">要与第一个序列连接的序列。</param>
491       <typeparam name="TSource">输入序列中的元素的类型。</typeparam>
492       <exception cref="T:System.ArgumentNullException">
493         <paramref name="first" /> 或 <paramref name="second" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
494     </member>
495     <member name="M:System.Linq.ParallelEnumerable.Contains``1(System.Linq.ParallelQuery{``0},``0)">
496       <summary>通过使用默认的相等比较器,并行确定某个序列是否包含指定的元素。</summary>
497       <returns>如果源序列包含具有指定值的元素,则为 true;否则为 false。</returns>
498       <param name="source">要在其中定位某个值的序列。</param>
499       <param name="value">要在序列中定位的值。</param>
500       <typeparam name="TSource">
501         <paramref name="source" /> 中的元素的类型。</typeparam>
502       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
503       <exception cref="T:System.ArgumentNullException">
504         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
505       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
506     </member>
507     <member name="M:System.Linq.ParallelEnumerable.Contains``1(System.Linq.ParallelQuery{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
508       <summary>通过使用指定的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 来并行确定序列是否包含指定的元素。</summary>
509       <returns>如果源序列包含具有指定值的元素,则为 true;否则为 false。</returns>
510       <param name="source">要在其中定位某个值的序列。</param>
511       <param name="value">要在序列中定位的值。</param>
512       <param name="comparer">一个对值进行比较的相等比较器。</param>
513       <typeparam name="TSource">
514         <paramref name="source" /> 中的元素的类型。</typeparam>
515       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
516       <exception cref="T:System.ArgumentNullException">
517         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
518       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
519     </member>
520     <member name="M:System.Linq.ParallelEnumerable.Count``1(System.Linq.ParallelQuery{``0})">
521       <summary>返回并行序列中的元素数量。</summary>
522       <returns>输入序列中的元素数量。</returns>
523       <param name="source">包含要计数的元素的序列。</param>
524       <typeparam name="TSource">
525         <paramref name="source" /> 中的元素的类型。</typeparam>
526       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
527       <exception cref="T:System.ArgumentNullException">
528         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
529       <exception cref="T:System.AggregateException">源中的元素数大于 <see cref="F:System.Int32.MaxValue" />。(在这种情况下 InnerException 为 <see cref="T:System.OverflowException" />)- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
530     </member>
531     <member name="M:System.Linq.ParallelEnumerable.Count``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Boolean})">
532       <summary>返回一个数字,表示在指定的并行序列中满足条件的元素数量。</summary>
533       <returns>一个数字,表示序列中满足谓词函数条件的元素数量。</returns>
534       <param name="source">包含要计数的元素的序列。</param>
535       <param name="predicate">用于测试每个元素是否满足条件的函数。</param>
536       <typeparam name="TSource">
537         <paramref name="source" /> 中的元素的类型。</typeparam>
538       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
539       <exception cref="T:System.ArgumentNullException">
540         <paramref name="source" /> 或 <paramref name="predicate" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
541       <exception cref="T:System.AggregateException">源中的元素数大于 <see cref="F:System.Int32.MaxValue" />。(在这种情况下 InnerException 为 <see cref="T:System.OverflowException" />)- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
542     </member>
543     <member name="M:System.Linq.ParallelEnumerable.DefaultIfEmpty``1(System.Linq.ParallelQuery{``0})">
544       <summary>返回指定的并行序列的元素;如果序列为空,则返回单一实例集合中的类型参数的默认值。</summary>
545       <returns>如果 <paramref name="source" /> 为空,则为包含 default(TSource) 的序列;否则为 <paramref name="source" />。</returns>
546       <param name="source">序列为空时返回默认值的序列。</param>
547       <typeparam name="TSource">
548         <paramref name="source" /> 中的元素的类型。</typeparam>
549       <exception cref="T:System.ArgumentNullException">
550         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
551       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
552       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
553     </member>
554     <member name="M:System.Linq.ParallelEnumerable.DefaultIfEmpty``1(System.Linq.ParallelQuery{``0},``0)">
555       <summary>返回指定的并行序列中的元素;如果序列为空,则返回单一实例集合中的指定值。</summary>
556       <returns>如果 <paramref name="source" /> 为空,则为包含 defaultValue 的序列;否则为 <paramref name="source" />。</returns>
557       <param name="source">序列为空时返回指定值的序列。</param>
558       <param name="defaultValue">序列为空时要返回的值。</param>
559       <typeparam name="TSource">
560         <paramref name="source" /> 中的元素的类型。</typeparam>
561       <exception cref="T:System.ArgumentNullException">
562         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
563       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
564       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
565     </member>
566     <member name="M:System.Linq.ParallelEnumerable.Distinct``1(System.Linq.ParallelQuery{``0})">
567       <summary>通过使用默认的相等比较器对值进行比较,返回并行序列中的非重复元素。</summary>
568       <returns>一个序列,其中包含源序列中的非重复元素。</returns>
569       <param name="source">要从中移除重复元素的序列。</param>
570       <typeparam name="TSource">
571         <paramref name="source" /> 中的元素的类型。</typeparam>
572       <exception cref="T:System.ArgumentNullException">
573         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
574       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
575       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
576     </member>
577     <member name="M:System.Linq.ParallelEnumerable.Distinct``1(System.Linq.ParallelQuery{``0},System.Collections.Generic.IEqualityComparer{``0})">
578       <summary>通过使用指定的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 对值进行比较返回并行序列中的非重复元素。</summary>
579       <returns>一个序列,其中包含源序列中的非重复元素。</returns>
580       <param name="source">要从中移除重复元素的序列。</param>
581       <param name="comparer">用于比较值的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
582       <typeparam name="TSource">
583         <paramref name="source" /> 中的元素的类型。</typeparam>
584       <exception cref="T:System.ArgumentNullException">
585         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
586       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
587     </member>
588     <member name="M:System.Linq.ParallelEnumerable.ElementAt``1(System.Linq.ParallelQuery{``0},System.Int32)">
589       <summary>返回并行序列中指定索引处的元素。</summary>
590       <returns>源序列中指定位置处的元素。</returns>
591       <param name="source">要从中返回元素的序列。</param>
592       <param name="index">要检索的从零开始的元素索引。</param>
593       <typeparam name="TSource">
594         <paramref name="source" /> 中的元素的类型。</typeparam>
595       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
596       <exception cref="T:System.ArgumentNullException">
597         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
598       <exception cref="T:System.ArgumentOutOfRangeException">
599         <paramref name="index" /> 小于零或大于等于 <paramref name="source" /> 中的元素数量。</exception>
600       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
601     </member>
602     <member name="M:System.Linq.ParallelEnumerable.ElementAtOrDefault``1(System.Linq.ParallelQuery{``0},System.Int32)">
603       <summary>返回并行序列中指定索引处的元素;如果索引超出范围,则返回默认值。</summary>
604       <returns>如果索引超出源序列的范围,则为 default(TSource);否则为源序列中指定位置处的元素。</returns>
605       <param name="source">要从中返回元素的序列。</param>
606       <param name="index">要检索的从零开始的元素索引。</param>
607       <typeparam name="TSource">
608         <paramref name="source" /> 中的元素的类型。</typeparam>
609       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
610       <exception cref="T:System.ArgumentNullException">
611         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
612       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
613     </member>
614     <member name="M:System.Linq.ParallelEnumerable.Empty``1">
615       <summary>返回一个具有指定的类型参数的空 ParallelQuery{TResult}。</summary>
616       <returns>一个空序列,其类型参数为 <paramref name="TResult" />。</returns>
617       <typeparam name="TResult">要分配给返回的泛型序列的类型参数的类型。</typeparam>
618     </member>
619     <member name="M:System.Linq.ParallelEnumerable.Except``1(System.Linq.ParallelQuery{``0},System.Collections.Generic.IEnumerable{``0})">
620       <summary>切勿调用此 Except 重载。此方法已标记为过时,调用此方法时总是会引发 <see cref="T:System.NotSupportedException" />。</summary>
621       <returns>此重载总是会引发 <see cref="T:System.NotSupportedException" />。</returns>
622       <param name="first">未使用此参数。</param>
623       <param name="second">未使用此参数。</param>
624       <typeparam name="TSource">未使用此类型参数。</typeparam>
625       <exception cref="T:System.NotSupportedException">调用此方法时发生的异常。</exception>
626     </member>
627     <member name="M:System.Linq.ParallelEnumerable.Except``1(System.Linq.ParallelQuery{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
628       <summary>切勿调用此 Except 重载。此方法已标记为过时,调用此方法时总是会引发 <see cref="T:System.NotSupportedException" />。</summary>
629       <returns>此重载总是会引发 <see cref="T:System.NotSupportedException" />。</returns>
630       <param name="first">未使用此参数。</param>
631       <param name="second">未使用此参数。</param>
632       <param name="comparer">未使用此参数。</param>
633       <typeparam name="TSource">未使用此类型参数。</typeparam>
634       <exception cref="T:System.NotSupportedException">调用此方法时发生的异常。</exception>
635     </member>
636     <member name="M:System.Linq.ParallelEnumerable.Except``1(System.Linq.ParallelQuery{``0},System.Linq.ParallelQuery{``0})">
637       <summary>通过使用默认的相等比较器对值进行比较,生成两个并行序列的差集。</summary>
638       <returns>包含这两个序列的元素的差集的序列。</returns>
639       <param name="first">一个序列,其中的未同时出现在 <paramref name="second" /> 中的元素将会返回。</param>
640       <param name="second">一个序列,其中的元素如果同时出现在第一个序列中,则将导致从返回的序列中移除这些元素。</param>
641       <typeparam name="TSource">输入序列中的元素的类型。</typeparam>
642       <exception cref="T:System.ArgumentNullException">
643         <paramref name="first" /> 或 <paramref name="second" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
644       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
645       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
646     </member>
647     <member name="M:System.Linq.ParallelEnumerable.Except``1(System.Linq.ParallelQuery{``0},System.Linq.ParallelQuery{``0},System.Collections.Generic.IEqualityComparer{``0})">
648       <summary>通过使用指定的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 对值进行比较产生两个并行序列的差集。</summary>
649       <returns>包含这两个序列的元素的差集的序列。</returns>
650       <param name="first">一个序列,其中的未同时出现在 <paramref name="second" /> 中的元素将会返回。</param>
651       <param name="second">一个序列,其中的元素如果同时出现在第一个序列中,则将导致从返回的序列中移除这些元素。 </param>
652       <param name="comparer">用于比较值的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
653       <typeparam name="TSource">输入序列中的元素的类型。</typeparam>
654       <exception cref="T:System.ArgumentNullException">
655         <paramref name="first" /> 或 <paramref name="second" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
656       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
657       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
658     </member>
659     <member name="M:System.Linq.ParallelEnumerable.First``1(System.Linq.ParallelQuery{``0})">
660       <summary>返回并行序列中的第一个元素。</summary>
661       <returns>返回指定序列中的第一个元素。</returns>
662       <param name="source">要返回其第一个元素的序列。</param>
663       <typeparam name="TSource">
664         <paramref name="source" /> 中的元素的类型。</typeparam>
665       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
666       <exception cref="T:System.ArgumentNullException">
667         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
668       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
669       <exception cref="T:System.InvalidOperationException">
670         <paramref name="source" /> 中不包含任何元素。</exception>
671     </member>
672     <member name="M:System.Linq.ParallelEnumerable.First``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Boolean})">
673       <summary>返回并行序列中满足指定条件的第一个元素。</summary>
674       <returns>序列中通过指定谓词函数中的测试的第一个元素。</returns>
675       <param name="source">要从中返回元素的序列。</param>
676       <param name="predicate">用于测试每个元素是否满足条件的函数。</param>
677       <typeparam name="TSource">
678         <paramref name="source" /> 中的元素的类型。</typeparam>
679       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
680       <exception cref="T:System.ArgumentNullException">
681         <paramref name="source" /> 或 <paramref name="predicate" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
682       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
683       <exception cref="T:System.InvalidOperationException">
684         <paramref name="source" /> 中没有元素满足 <paramref name="predicate" /> 中的条件。</exception>
685     </member>
686     <member name="M:System.Linq.ParallelEnumerable.FirstOrDefault``1(System.Linq.ParallelQuery{``0})">
687       <summary>返回并行序列中的第一个元素;如果该序列中不包含任何元素,则返回默认值。</summary>
688       <returns>如果 <paramref name="source" /> 为空,则返回 default(TSource);否则返回 <paramref name="source" /> 中的第一个元素。</returns>
689       <param name="source">要返回其第一个元素的序列。</param>
690       <typeparam name="TSource">
691         <paramref name="source" /> 中的元素的类型。</typeparam>
692       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
693       <exception cref="T:System.ArgumentNullException">
694         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
695       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
696     </member>
697     <member name="M:System.Linq.ParallelEnumerable.FirstOrDefault``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Boolean})">
698       <summary>返回并行序列中满足条件的第一个元素;如果未找到这样的元素,则返回默认值。</summary>
699       <returns>如果 <paramref name="source" /> 为空或没有元素通过 predicate 指定的测试,则返回 default(TSource),否则返回 <paramref name="source" /> 中通过 predicate 指定的测试的第一个元素。</returns>
700       <param name="source">要从中返回元素的序列。</param>
701       <param name="predicate">用于测试每个元素是否满足条件的函数。</param>
702       <typeparam name="TSource">
703         <paramref name="source" /> 中的元素的类型。</typeparam>
704       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
705       <exception cref="T:System.ArgumentNullException">
706         <paramref name="source" /> 或 <paramref name="predicate" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
707       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
708     </member>
709     <member name="M:System.Linq.ParallelEnumerable.ForAll``1(System.Linq.ParallelQuery{``0},System.Action{``0})">
710       <summary>对 <paramref name="source" /> 中的每个元素并行调用指定的操作。</summary>
711       <param name="source">其元素将由 <paramref name="action" /> 处理的 <see cref="T:System.Linq.ParallelQuery`1" />。</param>
712       <param name="action">要对每个元素调用的操作。</param>
713       <typeparam name="TSource">
714         <paramref name="source" /> 中的元素的类型。</typeparam>
715       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
716       <exception cref="T:System.ArgumentNullException">
717         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
718       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
719     </member>
720     <member name="M:System.Linq.ParallelEnumerable.GroupBy``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})">
721       <summary>根据指定的键选择器函数对序列中的元素进行并行分组。</summary>
722       <returns>依照 <paramref name="TKey" /> 按降序排列的组序列。</returns>
723       <param name="source">一个 OrderedParallelQuery{TSource},包含要排序的元素。</param>
724       <param name="keySelector">用于从元素中提取键的函数。</param>
725       <typeparam name="TSource">
726         <paramref name="source" /> 中的元素的类型。</typeparam>
727       <typeparam name="TKey">
728         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
729       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
730       <exception cref="T:System.ArgumentNullException">
731         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
732       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
733     </member>
734     <member name="M:System.Linq.ParallelEnumerable.GroupBy``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
735       <summary>根据指定的键选择器函数对序列中的元素进行并行分组,并使用指定的 <see cref="T:System.Collections.Generic.IComparer`1" /> 对键进行比较。</summary>
736       <returns>依照 <paramref name="TKey" /> 按降序排列的组序列。</returns>
737       <param name="source">一个 <see cref="T:System.Linq.OrderedParallelQuery`1" />,包含要排序的元素。</param>
738       <param name="keySelector">用于从元素中提取键的函数。</param>
739       <param name="comparer">一个用于比较键的 <see cref="T:System.Collections.Generic.IComparer`1" />。</param>
740       <typeparam name="TSource">
741         <paramref name="source" /> 中的元素的类型。</typeparam>
742       <typeparam name="TKey">
743         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
744       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
745       <exception cref="T:System.ArgumentNullException">
746         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
747       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
748     </member>
749     <member name="M:System.Linq.ParallelEnumerable.GroupBy``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2})">
750       <summary>根据指定的键选择器函数对序列中的元素进行并行分组,并且通过使用指定的函数对每个组中的元素进行投影。</summary>
751       <returns>依照 <paramref name="TKey" /> 按降序排列的组序列。</returns>
752       <param name="source">一个 <see cref="T:System.Linq.OrderedParallelQuery`1" />,包含要排序的元素。</param>
753       <param name="keySelector">用于从元素中提取键的函数。</param>
754       <param name="elementSelector">用于将每个源元素映射到 <see cref="T:System.Linq.IGrouping`2" /> 中的元素的函数。</param>
755       <typeparam name="TSource">
756         <paramref name="source" /> 中的元素的类型。</typeparam>
757       <typeparam name="TKey">
758         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
759       <typeparam name="TElement">
760         <see cref="T:System.Linq.IGrouping`2" /> 中的元素的类型。</typeparam>
761       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
762       <exception cref="T:System.ArgumentNullException">
763         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
764       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
765     </member>
766     <member name="M:System.Linq.ParallelEnumerable.GroupBy``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">
767       <summary>根据键选择器函数对序列中的元素进行并行分组。通过使用比较器对键进行比较,并且通过使用指定的函数对每个组的元素进行投影。</summary>
768       <returns>依照 <paramref name="TKey" /> 按降序排列的组序列。</returns>
769       <param name="source">一个 OrderedParallelQuery{TSource},包含要排序的元素。</param>
770       <param name="keySelector">用于从元素中提取键的函数。</param>
771       <param name="elementSelector">用于将每个源元素映射到 IGrouping 中的元素的函数。</param>
772       <param name="comparer">一个用于比较键的 IComparer{TSource}。</param>
773       <typeparam name="TSource">
774         <paramref name="source" /> 中的元素的类型。</typeparam>
775       <typeparam name="TKey">
776         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
777       <typeparam name="TElement">IGrouping 中的元素的类型</typeparam>
778       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
779       <exception cref="T:System.ArgumentNullException">
780         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
781       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
782     </member>
783     <member name="M:System.Linq.ParallelEnumerable.GroupBy``4(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2},System.Func{``1,System.Collections.Generic.IEnumerable{``2},``3})">
784       <summary>根据指定的键选择器函数对序列中的元素进行并行分组,并且从每个组及其键中创建结果值。通过使用指定的函数对每个组的元素进行投影。</summary>
785       <returns>
786         <paramref name="TResult" /> 类型的元素的序列,其中每个元素都表示对一个组及其键的投影。</returns>
787       <param name="source">要对其元素进行分组的序列。</param>
788       <param name="keySelector">用于提取每个元素的键的函数。</param>
789       <param name="elementSelector">用于将每个源元素映射到 IGrouping&lt;TKey, TElement&gt; 中的元素的函数。</param>
790       <param name="resultSelector">用于从每个组中创建结果值的函数。</param>
791       <typeparam name="TSource">
792         <paramref name="source" /> 中的元素的类型。</typeparam>
793       <typeparam name="TKey">
794         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
795       <typeparam name="TElement">每个 IGrouping{TKey, TElement} 中的元素的类型。</typeparam>
796       <typeparam name="TResult">
797         <paramref name="resultSelector" /> 返回的结果值的类型。</typeparam>
798       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
799       <exception cref="T:System.ArgumentNullException">
800         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
801       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
802     </member>
803     <member name="M:System.Linq.ParallelEnumerable.GroupBy``4(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2},System.Func{``1,System.Collections.Generic.IEnumerable{``2},``3},System.Collections.Generic.IEqualityComparer{``1})">
804       <summary>根据指定的键选择器函数对序列中的元素进行分组,并且从每个组及其键中创建结果值。通过使用指定的比较器对键值进行比较,并且通过使用指定的函数对每个组的元素进行投影。</summary>
805       <returns>
806         <paramref name="TResult" /> 类型的元素的序列,其中每个元素都表示对一个组及其键的投影。</returns>
807       <param name="source">要对其元素进行分组的序列。</param>
808       <param name="keySelector">用于提取每个元素的键的函数。</param>
809       <param name="elementSelector">用于将每个源元素映射到 IGrouping{Key, TElement} 中的元素的函数。</param>
810       <param name="resultSelector">用于从每个组中创建结果值的函数。</param>
811       <param name="comparer">一个用于比较键的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
812       <typeparam name="TSource">
813         <paramref name="source" /> 中的元素的类型。</typeparam>
814       <typeparam name="TKey">
815         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
816       <typeparam name="TElement">每个 IGrouping{TKey, TElement} 中的元素的类型。</typeparam>
817       <typeparam name="TResult">
818         <paramref name="resultSelector" /> 返回的结果值的类型。</typeparam>
819       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
820       <exception cref="T:System.ArgumentNullException">
821         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
822       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
823     </member>
824     <member name="M:System.Linq.ParallelEnumerable.GroupBy``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``1,System.Collections.Generic.IEnumerable{``0},``2})">
825       <summary>根据指定的键选择器函数对序列中的元素进行并行分组,并且从每个组及其键中创建结果值。</summary>
826       <returns>
827         <paramref name="TResult" /> 类型的元素的序列,其中每个元素都表示对一个组及其键的投影。</returns>
828       <param name="source">要对其元素进行分组的序列。</param>
829       <param name="keySelector">用于提取每个元素的键的函数。</param>
830       <param name="resultSelector">用于从每个组中创建结果值的函数。</param>
831       <typeparam name="TSource">
832         <paramref name="source" /> 中的元素的类型。</typeparam>
833       <typeparam name="TKey">
834         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
835       <typeparam name="TResult">
836         <paramref name="resultSelector" /> 返回的结果值的类型。</typeparam>
837       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
838       <exception cref="T:System.ArgumentNullException">
839         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
840       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
841     </member>
842     <member name="M:System.Linq.ParallelEnumerable.GroupBy``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``1,System.Collections.Generic.IEnumerable{``0},``2},System.Collections.Generic.IEqualityComparer{``1})">
843       <summary>根据指定的键选择器函数对序列中的元素进行并行分组,并且从每个组及其键中创建结果值。通过使用指定的比较器对键进行比较。</summary>
844       <returns>一个组序列。</returns>
845       <param name="source">要对其元素进行分组的序列。</param>
846       <param name="keySelector">用于提取每个元素的键的函数。</param>
847       <param name="resultSelector">用于从每个组中创建结果值的函数。</param>
848       <param name="comparer">一个用于比较键的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
849       <typeparam name="TSource">
850         <paramref name="source" /> 中的元素的类型。</typeparam>
851       <typeparam name="TKey">
852         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
853       <typeparam name="TResult">
854         <paramref name="resultSelector" /> 返回的结果值的类型。</typeparam>
855       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
856       <exception cref="T:System.ArgumentNullException">
857         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
858       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
859     </member>
860     <member name="M:System.Linq.ParallelEnumerable.GroupJoin``4(System.Linq.ParallelQuery{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,System.Collections.Generic.IEnumerable{``1},``3})">
861       <summary>切勿调用此 GroupJoin 重载。此方法已标记为过时,调用此方法时总是会引发 <see cref="T:System.NotSupportedException" />。</summary>
862       <returns>此重载总是会引发 <see cref="T:System.NotSupportedException" />。</returns>
863       <param name="outer">未使用此参数。</param>
864       <param name="inner">未使用此参数。</param>
865       <param name="outerKeySelector">未使用此参数。</param>
866       <param name="innerKeySelector">未使用此参数。</param>
867       <param name="resultSelector">未使用此参数。</param>
868       <typeparam name="TOuter">未使用此类型参数。</typeparam>
869       <typeparam name="TInner">未使用此类型参数。</typeparam>
870       <typeparam name="TKey">未使用此类型参数。</typeparam>
871       <typeparam name="TResult">未使用此类型参数。</typeparam>
872       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
873       <exception cref="T:System.ArgumentNullException">
874         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
875       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
876     </member>
877     <member name="M:System.Linq.ParallelEnumerable.GroupJoin``4(System.Linq.ParallelQuery{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,System.Collections.Generic.IEnumerable{``1},``3},System.Collections.Generic.IEqualityComparer{``2})">
878       <summary>切勿调用此 GroupJoin 重载。此方法已标记为过时,调用此方法时总是会引发 <see cref="T:System.NotSupportedException" />。</summary>
879       <returns>此重载总是会引发 <see cref="T:System.NotSupportedException" />。</returns>
880       <param name="outer">未使用此参数。</param>
881       <param name="inner">未使用此参数。</param>
882       <param name="outerKeySelector">未使用此参数。</param>
883       <param name="innerKeySelector">未使用此参数。</param>
884       <param name="resultSelector">未使用此参数。</param>
885       <param name="comparer">未使用此参数。</param>
886       <typeparam name="TOuter">未使用此类型参数。</typeparam>
887       <typeparam name="TInner">未使用此类型参数。</typeparam>
888       <typeparam name="TKey">未使用此类型参数。</typeparam>
889       <typeparam name="TResult">未使用此类型参数。</typeparam>
890       <exception cref="T:System.NotSupportedException">调用此方法时发生的异常。</exception>
891     </member>
892     <member name="M:System.Linq.ParallelEnumerable.GroupJoin``4(System.Linq.ParallelQuery{``0},System.Linq.ParallelQuery{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,System.Collections.Generic.IEnumerable{``1},``3})">
893       <summary>基于键相等对两个序列的元素进行并行关联并对结果进行分组。使用默认的相等比较器对键进行比较。</summary>
894       <returns>一个序列,其中包含通过对两个序列执行分组联接获得的 <paramref name="TResult" /> 类型的元素。</returns>
895       <param name="outer">要联接的第一个序列。</param>
896       <param name="inner">要与第一个序列联接的序列。</param>
897       <param name="outerKeySelector">用于从第一个序列的每个元素提取联接键的函数。</param>
898       <param name="innerKeySelector">用于从第二个序列的每个元素提取联接键的函数。</param>
899       <param name="resultSelector">用于从第一个序列的元素和第二个序列的匹配元素集合中创建结果元素的函数。</param>
900       <typeparam name="TOuter">第二个序列中的元素的类型。</typeparam>
901       <typeparam name="TInner">第一个序列中的元素的类型。</typeparam>
902       <typeparam name="TKey">键选择器函数返回的键的类型。</typeparam>
903       <typeparam name="TResult">结果元素的类型。</typeparam>
904       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
905       <exception cref="T:System.ArgumentNullException">
906         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
907       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
908     </member>
909     <member name="M:System.Linq.ParallelEnumerable.GroupJoin``4(System.Linq.ParallelQuery{``0},System.Linq.ParallelQuery{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,System.Collections.Generic.IEnumerable{``1},``3},System.Collections.Generic.IEqualityComparer{``2})">
910       <summary>基于键相等对两个序列的元素进行并行关联并对结果进行分组。使用指定的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 对键进行比较。</summary>
911       <returns>一个序列,其中包含通过对两个序列执行分组联接获得的 <paramref name="TResult" /> 类型的元素。</returns>
912       <param name="outer">要联接的第一个序列。</param>
913       <param name="inner">要与第一个序列联接的序列。</param>
914       <param name="outerKeySelector">用于从第一个序列的每个元素提取联接键的函数。</param>
915       <param name="innerKeySelector">用于从第二个序列的每个元素提取联接键的函数。</param>
916       <param name="resultSelector">用于从第一个序列的元素和第二个序列的匹配元素集合中创建结果元素的函数。</param>
917       <param name="comparer">一个 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />,用于对键进行哈希处理和比较。</param>
918       <typeparam name="TOuter">第二个序列中的元素的类型。</typeparam>
919       <typeparam name="TInner">第一个序列中的元素的类型。</typeparam>
920       <typeparam name="TKey">键选择器函数返回的键的类型。</typeparam>
921       <typeparam name="TResult">结果元素的类型。</typeparam>
922       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
923       <exception cref="T:System.ArgumentNullException">
924         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
925       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
926     </member>
927     <member name="M:System.Linq.ParallelEnumerable.Intersect``1(System.Linq.ParallelQuery{``0},System.Collections.Generic.IEnumerable{``0})">
928       <summary>切勿调用此 Intersect 重载。此方法已标记为过时,调用此方法时总是会引发 <see cref="T:System.NotSupportedException" />。</summary>
929       <returns>此重载总是会引发 <see cref="T:System.NotSupportedException" />。</returns>
930       <param name="first">未使用此参数。</param>
931       <param name="second">未使用此参数。</param>
932       <typeparam name="TSource">未使用此类型参数。</typeparam>
933       <exception cref="T:System.NotSupportedException">调用此方法时发生的异常。</exception>
934     </member>
935     <member name="M:System.Linq.ParallelEnumerable.Intersect``1(System.Linq.ParallelQuery{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
936       <summary>切勿调用此 Intersect 重载。此方法已标记为过时,调用此方法时总是会引发 <see cref="T:System.NotSupportedException" />。</summary>
937       <returns>此重载总是会引发 <see cref="T:System.NotSupportedException" />。</returns>
938       <param name="first">未使用此参数。</param>
939       <param name="second">未使用此参数。</param>
940       <param name="comparer">未使用此参数。</param>
941       <typeparam name="TSource">未使用此类型参数。</typeparam>
942       <exception cref="T:System.NotSupportedException">调用此方法时发生的异常。</exception>
943     </member>
944     <member name="M:System.Linq.ParallelEnumerable.Intersect``1(System.Linq.ParallelQuery{``0},System.Linq.ParallelQuery{``0})">
945       <summary>通过使用默认的相等比较器对值进行比较,生成两个并行序列的交集。</summary>
946       <returns>包含组成两个序列交集的元素的序列。</returns>
947       <param name="first">一个序列,其中的同时出现在 <paramref name="second" /> 中的非重复元素将会返回。</param>
948       <param name="second">一个序列,其中的同时出现在第一个序列中的非重复元素将被返回。</param>
949       <typeparam name="TSource">输入序列中的元素的类型。</typeparam>
950       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
951       <exception cref="T:System.ArgumentNullException">
952         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
953       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
954     </member>
955     <member name="M:System.Linq.ParallelEnumerable.Intersect``1(System.Linq.ParallelQuery{``0},System.Linq.ParallelQuery{``0},System.Collections.Generic.IEqualityComparer{``0})">
956       <summary>通过使用指定的 IEqualityComparer{T} 对值进行比较,生成两个并行序列的交集。</summary>
957       <returns>包含组成两个序列交集的元素的序列。</returns>
958       <param name="first">一个序列,其中的同时出现在 <paramref name="second" /> 中的非重复元素将会返回。</param>
959       <param name="second">一个序列,其中的同时出现在第一个序列中的非重复元素将被返回。</param>
960       <param name="comparer">用于比较值的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
961       <typeparam name="TSource">输入序列中的元素的类型。</typeparam>
962       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
963       <exception cref="T:System.ArgumentNullException">
964         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
965       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
966     </member>
967     <member name="M:System.Linq.ParallelEnumerable.Join``4(System.Linq.ParallelQuery{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3})">
968       <summary>切勿调用此 Join 重载。此方法已标记为过时,调用此方法时总是会引发 <see cref="T:System.NotSupportedException" />。</summary>
969       <returns>此重载总是会引发 <see cref="T:System.NotSupportedException" />。</returns>
970       <param name="outer">未使用此参数。</param>
971       <param name="inner">未使用此参数。</param>
972       <param name="outerKeySelector">未使用此参数。</param>
973       <param name="innerKeySelector">未使用此参数。</param>
974       <param name="resultSelector">未使用此参数。</param>
975       <typeparam name="TOuter">未使用此类型参数。</typeparam>
976       <typeparam name="TInner">未使用此类型参数。</typeparam>
977       <typeparam name="TKey">未使用此类型参数。</typeparam>
978       <typeparam name="TResult">未使用此类型参数。</typeparam>
979       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
980       <exception cref="T:System.ArgumentNullException">
981         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
982       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
983     </member>
984     <member name="M:System.Linq.ParallelEnumerable.Join``4(System.Linq.ParallelQuery{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3},System.Collections.Generic.IEqualityComparer{``2})">
985       <summary>切勿调用此 Join 重载。此方法已标记为过时,调用此方法时总是会引发 <see cref="T:System.NotSupportedException" />。</summary>
986       <returns>此重载总是会引发 <see cref="T:System.NotSupportedException" />。</returns>
987       <param name="outer">未使用此参数。</param>
988       <param name="inner">未使用此参数。</param>
989       <param name="outerKeySelector">未使用此参数。</param>
990       <param name="innerKeySelector">未使用此参数。</param>
991       <param name="resultSelector">未使用此参数。</param>
992       <param name="comparer">未使用此参数。</param>
993       <typeparam name="TOuter">未使用此类型参数。</typeparam>
994       <typeparam name="TInner">未使用此类型参数。</typeparam>
995       <typeparam name="TKey">未使用此类型参数。</typeparam>
996       <typeparam name="TResult">未使用此类型参数。</typeparam>
997       <exception cref="T:System.NotSupportedException">调用此方法时发生的异常。</exception>
998     </member>
999     <member name="M:System.Linq.ParallelEnumerable.Join``4(System.Linq.ParallelQuery{``0},System.Linq.ParallelQuery{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3})">
1000       <summary>基于匹配键对两个序列的元素进行并行关联。使用默认的相等比较器对键进行比较。</summary>
1001       <returns>一个序列,其中包含通过对两个序列执行内部联接获得的 <paramref name="TResult" /> 类型的元素。</returns>
1002       <param name="outer">要联接的第一个序列。</param>
1003       <param name="inner">要与第一个序列联接的序列。</param>
1004       <param name="outerKeySelector">用于从第一个序列的每个元素提取联接键的函数。</param>
1005       <param name="innerKeySelector">用于从第二个序列的每个元素提取联接键的函数。</param>
1006       <param name="resultSelector">用于从两个匹配元素创建结果元素的函数。</param>
1007       <typeparam name="TOuter">第二个序列中的元素的类型。</typeparam>
1008       <typeparam name="TInner">第一个序列中的元素的类型。</typeparam>
1009       <typeparam name="TKey">键选择器函数返回的键的类型。</typeparam>
1010       <typeparam name="TResult">结果元素的类型。</typeparam>
1011       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1012       <exception cref="T:System.ArgumentNullException">
1013         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1014       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1015     </member>
1016     <member name="M:System.Linq.ParallelEnumerable.Join``4(System.Linq.ParallelQuery{``0},System.Linq.ParallelQuery{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3},System.Collections.Generic.IEqualityComparer{``2})">
1017       <summary>基于匹配键对两个序列的元素进行并行关联。使用指定的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 对键进行比较。</summary>
1018       <returns>一个序列,其中包含通过对两个序列执行内部联接获得的 <paramref name="TResult" /> 类型的元素。</returns>
1019       <param name="outer">要联接的第一个序列。</param>
1020       <param name="inner">要与第一个序列联接的序列。</param>
1021       <param name="outerKeySelector">用于从第一个序列的每个元素提取联接键的函数。</param>
1022       <param name="innerKeySelector">用于从第二个序列的每个元素提取联接键的函数。</param>
1023       <param name="resultSelector">用于从两个匹配元素创建结果元素的函数。</param>
1024       <param name="comparer">一个 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />,用于对键进行哈希处理和比较。</param>
1025       <typeparam name="TOuter">第二个序列中的元素的类型。</typeparam>
1026       <typeparam name="TInner">第一个序列中的元素的类型。</typeparam>
1027       <typeparam name="TKey">键选择器函数返回的键的类型。</typeparam>
1028       <typeparam name="TResult">结果元素的类型。</typeparam>
1029       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1030       <exception cref="T:System.ArgumentNullException">
1031         <paramref name="source" /> 或 <paramref name="action" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1032       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1033     </member>
1034     <member name="M:System.Linq.ParallelEnumerable.Last``1(System.Linq.ParallelQuery{``0})">
1035       <summary>返回并行序列中的最后一个元素。</summary>
1036       <returns>源序列中最后位置处的值。</returns>
1037       <param name="source">要从中返回最后一个元素的序列。</param>
1038       <typeparam name="TSource">
1039         <paramref name="source" /> 中的元素的类型。</typeparam>
1040       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1041       <exception cref="T:System.ArgumentNullException">
1042         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1043       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1044       <exception cref="T:System.InvalidOperationException">
1045         <paramref name="source" /> 中不包含任何元素。</exception>
1046     </member>
1047     <member name="M:System.Linq.ParallelEnumerable.Last``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Boolean})">
1048       <summary>返回并行序列中满足指定条件的最后一个元素。</summary>
1049       <returns>序列中通过指定谓词函数中的测试的最后一个元素。</returns>
1050       <param name="source">要从中返回元素的序列。</param>
1051       <param name="predicate">用于测试每个元素是否满足条件的函数。</param>
1052       <typeparam name="TSource">
1053         <paramref name="source" /> 中的元素的类型。</typeparam>
1054       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1055       <exception cref="T:System.ArgumentNullException">
1056         <paramref name="source" /> 或 <paramref name="predicate" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1057       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1058       <exception cref="T:System.InvalidOperationException">
1059         <paramref name="source" /> 中没有元素满足 <paramref name="predicate" /> 中的条件。</exception>
1060     </member>
1061     <member name="M:System.Linq.ParallelEnumerable.LastOrDefault``1(System.Linq.ParallelQuery{``0})">
1062       <summary>返回并行序列中的最后一个元素;如果该序列中不包含任何元素,则返回默认值。</summary>
1063       <returns>如果源序列为空,则返回 default();否则返回该序列中的最后一个元素。</returns>
1064       <param name="source">要从中返回元素的序列。</param>
1065       <typeparam name="TSource">
1066         <paramref name="source" /> 中的元素的类型。</typeparam>
1067       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1068       <exception cref="T:System.ArgumentNullException">
1069         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1070       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1071     </member>
1072     <member name="M:System.Linq.ParallelEnumerable.LastOrDefault``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Boolean})">
1073       <summary>返回并行序列中满足条件的最后一个元素;如果未找到这样的元素,则返回默认值。</summary>
1074       <returns>如果序列为空或没有元素通过谓词函数中的测试,则返回 default();否则,返回通过谓词函数中的测试的最后一个元素。</returns>
1075       <param name="source">要从中返回元素的序列。</param>
1076       <param name="predicate">用于测试每个元素是否满足条件的函数。</param>
1077       <typeparam name="TSource">
1078         <paramref name="source" /> 中的元素的类型。</typeparam>
1079       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1080       <exception cref="T:System.ArgumentNullException">
1081         <paramref name="source" /> 或 <paramref name="predicate" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1082       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1083     </member>
1084     <member name="M:System.Linq.ParallelEnumerable.LongCount``1(System.Linq.ParallelQuery{``0})">
1085       <summary>返回一个 Int64,表示并行序列中的元素的总数。</summary>
1086       <returns>输入序列中的元素数量。</returns>
1087       <param name="source">包含要计数的元素的序列。</param>
1088       <typeparam name="TSource">
1089         <paramref name="source" /> 中的元素的类型。</typeparam>
1090       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1091       <exception cref="T:System.ArgumentNullException">
1092         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1093       <exception cref="T:System.AggregateException">源中的元素数大于 <see cref="F:System.Int64.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
1094       <exception cref="T:System.OverflowException">计算结果大于 <see cref="F:System.Int64.MaxValue" />。</exception>
1095     </member>
1096     <member name="M:System.Linq.ParallelEnumerable.LongCount``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Boolean})">
1097       <summary>返回一个 Int64,表示并行序列中满足条件的元素的数量。</summary>
1098       <returns>一个数字,表示序列中满足谓词函数条件的元素数量。</returns>
1099       <param name="source">包含要计数的元素的序列。</param>
1100       <param name="predicate">用于测试每个元素是否满足条件的函数。</param>
1101       <typeparam name="TSource">
1102         <paramref name="source" /> 中的元素的类型。</typeparam>
1103       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1104       <exception cref="T:System.ArgumentNullException">
1105         <paramref name="source" /> 或 <paramref name="predicate" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1106       <exception cref="T:System.AggregateException">源中的元素数大于 <see cref="F:System.Int64.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
1107       <exception cref="T:System.OverflowException">计算结果大于 <see cref="F:System.Int64.MaxValue" />。</exception>
1108     </member>
1109     <member name="M:System.Linq.ParallelEnumerable.Max(System.Linq.ParallelQuery{System.Decimal})">
1110       <summary>返回值的并行序列中的最大值。</summary>
1111       <returns>序列中的最大值。</returns>
1112       <param name="source">要确定其最大值的值序列。</param>
1113       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1114       <exception cref="T:System.ArgumentNullException">
1115         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1116       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1117       <exception cref="T:System.InvalidOperationException">
1118         <paramref name="source" /> 中不包含任何元素。</exception>
1119     </member>
1120     <member name="M:System.Linq.ParallelEnumerable.Max(System.Linq.ParallelQuery{System.Double})">
1121       <summary>返回值的并行序列中的最大值。</summary>
1122       <returns>序列中的最大值。</returns>
1123       <param name="source">要确定其最大值的值序列。</param>
1124       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1125       <exception cref="T:System.ArgumentNullException">
1126         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1127       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1128       <exception cref="T:System.InvalidOperationException">
1129         <paramref name="source" /> 中不包含任何元素。</exception>
1130     </member>
1131     <member name="M:System.Linq.ParallelEnumerable.Max(System.Linq.ParallelQuery{System.Int32})">
1132       <summary>返回值的并行序列中的最大值。</summary>
1133       <returns>序列中的最大值。</returns>
1134       <param name="source">要确定其最大值的值序列。</param>
1135       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1136       <exception cref="T:System.ArgumentNullException">
1137         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1138       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1139       <exception cref="T:System.InvalidOperationException">
1140         <paramref name="source" /> 中不包含任何元素。</exception>
1141     </member>
1142     <member name="M:System.Linq.ParallelEnumerable.Max(System.Linq.ParallelQuery{System.Int64})">
1143       <summary>返回值的并行序列中的最大值。</summary>
1144       <returns>序列中的最大值。</returns>
1145       <param name="source">要确定其最大值的值序列。</param>
1146       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1147       <exception cref="T:System.ArgumentNullException">
1148         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1149       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1150       <exception cref="T:System.InvalidOperationException">
1151         <paramref name="source" /> 中不包含任何元素。</exception>
1152     </member>
1153     <member name="M:System.Linq.ParallelEnumerable.Max(System.Linq.ParallelQuery{System.Nullable{System.Decimal}})">
1154       <summary>返回值的并行序列中的最大值。</summary>
1155       <returns>序列中的最大值。</returns>
1156       <param name="source">要确定其最大值的值序列。</param>
1157       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1158       <exception cref="T:System.ArgumentNullException">
1159         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1160       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1161       <exception cref="T:System.InvalidOperationException">
1162         <paramref name="source" /> 中不包含任何元素。</exception>
1163     </member>
1164     <member name="M:System.Linq.ParallelEnumerable.Max(System.Linq.ParallelQuery{System.Nullable{System.Double}})">
1165       <summary>返回值的并行序列中的最大值。</summary>
1166       <returns>序列中的最大值。</returns>
1167       <param name="source">要确定其最大值的值序列。</param>
1168       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1169       <exception cref="T:System.ArgumentNullException">
1170         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1171       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1172       <exception cref="T:System.InvalidOperationException">
1173         <paramref name="source" /> 中不包含任何元素。</exception>
1174     </member>
1175     <member name="M:System.Linq.ParallelEnumerable.Max(System.Linq.ParallelQuery{System.Nullable{System.Int32}})">
1176       <summary>返回值的并行序列中的最大值。</summary>
1177       <returns>序列中的最大值。</returns>
1178       <param name="source">要确定其最大值的值序列。</param>
1179       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1180       <exception cref="T:System.ArgumentNullException">
1181         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1182       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1183       <exception cref="T:System.InvalidOperationException">
1184         <paramref name="source" /> 中不包含任何元素。</exception>
1185     </member>
1186     <member name="M:System.Linq.ParallelEnumerable.Max(System.Linq.ParallelQuery{System.Nullable{System.Int64}})">
1187       <summary>返回值的并行序列中的最大值。</summary>
1188       <returns>序列中的最大值。</returns>
1189       <param name="source">要确定其最大值的值序列。</param>
1190       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1191       <exception cref="T:System.ArgumentNullException">
1192         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1193       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1194       <exception cref="T:System.InvalidOperationException">
1195         <paramref name="source" /> 中不包含任何元素。</exception>
1196     </member>
1197     <member name="M:System.Linq.ParallelEnumerable.Max(System.Linq.ParallelQuery{System.Nullable{System.Single}})">
1198       <summary>返回值的并行序列中的最大值。</summary>
1199       <returns>序列中的最大值。</returns>
1200       <param name="source">要确定其最大值的值序列。</param>
1201       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1202       <exception cref="T:System.ArgumentNullException">
1203         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1204       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1205       <exception cref="T:System.InvalidOperationException">
1206         <paramref name="source" /> 中不包含任何元素。</exception>
1207     </member>
1208     <member name="M:System.Linq.ParallelEnumerable.Max(System.Linq.ParallelQuery{System.Single})">
1209       <summary>返回值的并行序列中的最大值。</summary>
1210       <returns>序列中的最大值。</returns>
1211       <param name="source">要确定其最大值的值序列。</param>
1212       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1213       <exception cref="T:System.ArgumentNullException">
1214         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1215       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1216       <exception cref="T:System.InvalidOperationException">
1217         <paramref name="source" /> 中不包含任何元素。</exception>
1218     </member>
1219     <member name="M:System.Linq.ParallelEnumerable.Max``1(System.Linq.ParallelQuery{``0})">
1220       <summary>返回值的并行序列中的最大值。</summary>
1221       <returns>序列中的最大值。</returns>
1222       <param name="source">要确定其最大值的值序列。</param>
1223       <typeparam name="TSource">源序列中的元素的类型。</typeparam>
1224       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1225       <exception cref="T:System.ArgumentNullException">
1226         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1227       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1228       <exception cref="T:System.InvalidOperationException">
1229         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1230     </member>
1231     <member name="M:System.Linq.ParallelEnumerable.Max``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Decimal})">
1232       <summary>对一个序列中的每个元素并行调用转换函数,并返回最大值。</summary>
1233       <returns>序列中的最大值。</returns>
1234       <param name="source">要确定其最大值的值序列。</param>
1235       <param name="selector">应用于每个元素的转换函数。</param>
1236       <typeparam name="TSource">
1237         <paramref name="source" /> 中的元素的类型。</typeparam>
1238       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1239       <exception cref="T:System.ArgumentNullException">
1240         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1241       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1242       <exception cref="T:System.InvalidOperationException">
1243         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1244     </member>
1245     <member name="M:System.Linq.ParallelEnumerable.Max``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Double})">
1246       <summary>对一个序列中的每个元素并行调用转换函数,并返回最大值。</summary>
1247       <returns>序列中的最大值。</returns>
1248       <param name="source">要确定其最大值的值序列。</param>
1249       <param name="selector">应用于每个元素的转换函数。</param>
1250       <typeparam name="TSource">
1251         <paramref name="source" /> 中的元素的类型。</typeparam>
1252       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1253       <exception cref="T:System.ArgumentNullException">
1254         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1255       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1256       <exception cref="T:System.InvalidOperationException">
1257         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1258     </member>
1259     <member name="M:System.Linq.ParallelEnumerable.Max``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Int32})">
1260       <summary>对一个序列中的每个元素并行调用转换函数,并返回最大值。</summary>
1261       <returns>序列中的最大值。</returns>
1262       <param name="source">要确定其最大值的值序列。</param>
1263       <param name="selector">应用于每个元素的转换函数。</param>
1264       <typeparam name="TSource">
1265         <paramref name="source" /> 中的元素的类型。</typeparam>
1266       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1267       <exception cref="T:System.ArgumentNullException">
1268         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1269       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1270       <exception cref="T:System.InvalidOperationException">
1271         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1272     </member>
1273     <member name="M:System.Linq.ParallelEnumerable.Max``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Int64})">
1274       <summary>对一个序列中的每个元素并行调用转换函数,并返回最大值。</summary>
1275       <returns>序列中的最大值。</returns>
1276       <param name="source">要确定其最大值的值序列。</param>
1277       <param name="selector">应用于每个元素的转换函数。</param>
1278       <typeparam name="TSource">
1279         <paramref name="source" /> 中的元素的类型。</typeparam>
1280       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1281       <exception cref="T:System.ArgumentNullException">
1282         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1283       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1284       <exception cref="T:System.InvalidOperationException">
1285         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1286     </member>
1287     <member name="M:System.Linq.ParallelEnumerable.Max``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Decimal}})">
1288       <summary>对一个序列中的每个元素并行调用转换函数,并返回最大值。</summary>
1289       <returns>序列中的最大值。</returns>
1290       <param name="source">要确定其最大值的值序列。</param>
1291       <param name="selector">应用于每个元素的转换函数。</param>
1292       <typeparam name="TSource">
1293         <paramref name="source" /> 中的元素的类型。</typeparam>
1294       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1295       <exception cref="T:System.ArgumentNullException">
1296         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1297       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1298       <exception cref="T:System.InvalidOperationException">
1299         <paramref name="source" /> 中不包含任何元素。</exception>
1300     </member>
1301     <member name="M:System.Linq.ParallelEnumerable.Max``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Double}})">
1302       <summary>对一个序列中的每个元素并行调用转换函数,并返回最大值。</summary>
1303       <returns>序列中的最大值。</returns>
1304       <param name="source">要确定其最大值的值序列。</param>
1305       <param name="selector">应用于每个元素的转换函数。</param>
1306       <typeparam name="TSource">
1307         <paramref name="source" /> 中的元素的类型。</typeparam>
1308       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1309       <exception cref="T:System.ArgumentNullException">
1310         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1311       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1312       <exception cref="T:System.InvalidOperationException">
1313         <paramref name="source" /> 中不包含任何元素。</exception>
1314     </member>
1315     <member name="M:System.Linq.ParallelEnumerable.Max``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Int32}})">
1316       <summary>对一个序列中的每个元素并行调用转换函数,并返回最大值。</summary>
1317       <returns>序列中的最大值。</returns>
1318       <param name="source">要确定其最大值的值序列。</param>
1319       <param name="selector">应用于每个元素的转换函数。</param>
1320       <typeparam name="TSource">
1321         <paramref name="source" /> 中的元素的类型。</typeparam>
1322       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1323       <exception cref="T:System.ArgumentNullException">
1324         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1325       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1326       <exception cref="T:System.InvalidOperationException">
1327         <paramref name="source" /> 中不包含任何元素。</exception>
1328     </member>
1329     <member name="M:System.Linq.ParallelEnumerable.Max``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Int64}})">
1330       <summary>对一个序列中的每个元素并行调用转换函数,并返回最大值。</summary>
1331       <returns>序列中的最大值。</returns>
1332       <param name="source">要确定其最大值的值序列。</param>
1333       <param name="selector">应用于每个元素的转换函数。</param>
1334       <typeparam name="TSource">
1335         <paramref name="source" /> 中的元素的类型。</typeparam>
1336       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1337       <exception cref="T:System.ArgumentNullException">
1338         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1339       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1340       <exception cref="T:System.InvalidOperationException">
1341         <paramref name="source" /> 中不包含任何元素。</exception>
1342     </member>
1343     <member name="M:System.Linq.ParallelEnumerable.Max``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Single}})">
1344       <summary>对一个序列中的每个元素并行调用转换函数,并返回最大值。</summary>
1345       <returns>序列中的最大值。</returns>
1346       <param name="source">要确定其最大值的值序列。</param>
1347       <param name="selector">应用于每个元素的转换函数。</param>
1348       <typeparam name="TSource">
1349         <paramref name="source" /> 中的元素的类型。</typeparam>
1350       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1351       <exception cref="T:System.ArgumentNullException">
1352         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1353       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1354       <exception cref="T:System.InvalidOperationException">
1355         <paramref name="source" /> 中不包含任何元素。</exception>
1356     </member>
1357     <member name="M:System.Linq.ParallelEnumerable.Max``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Single})">
1358       <summary>对一个序列中的每个元素并行调用转换函数,并返回最大值。</summary>
1359       <returns>序列中的最大值。</returns>
1360       <param name="source">要确定其最大值的值序列。</param>
1361       <param name="selector">应用于每个元素的转换函数。</param>
1362       <typeparam name="TSource">
1363         <paramref name="source" /> 中的元素的类型。</typeparam>
1364       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1365       <exception cref="T:System.ArgumentNullException">
1366         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1367       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1368       <exception cref="T:System.InvalidOperationException">
1369         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1370     </member>
1371     <member name="M:System.Linq.ParallelEnumerable.Max``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})">
1372       <summary>对一个序列中的每个元素并行调用转换函数,并返回最大值。</summary>
1373       <returns>序列中的最大值。</returns>
1374       <param name="source">要确定其最大值的值序列。</param>
1375       <param name="selector">应用于每个元素的转换函数。</param>
1376       <typeparam name="TSource">
1377         <paramref name="source" /> 中的元素的类型。</typeparam>
1378       <typeparam name="TResult">
1379         <paramref name="selector" /> 返回的值的类型。</typeparam>
1380       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1381       <exception cref="T:System.ArgumentNullException">
1382         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1383       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1384       <exception cref="T:System.InvalidOperationException">
1385         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1386     </member>
1387     <member name="M:System.Linq.ParallelEnumerable.Min(System.Linq.ParallelQuery{System.Decimal})">
1388       <summary>返回值的并行序列中的最小值。</summary>
1389       <returns>序列中的最小值。</returns>
1390       <param name="source">要确定其最小值的值序列。</param>
1391       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1392       <exception cref="T:System.ArgumentNullException">
1393         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1394       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1395       <exception cref="T:System.InvalidOperationException">
1396         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1397     </member>
1398     <member name="M:System.Linq.ParallelEnumerable.Min(System.Linq.ParallelQuery{System.Double})">
1399       <summary>返回值的并行序列中的最小值。</summary>
1400       <returns>序列中的最小值。</returns>
1401       <param name="source">要确定其最小值的值序列。</param>
1402       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1403       <exception cref="T:System.ArgumentNullException">
1404         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1405       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1406       <exception cref="T:System.InvalidOperationException">
1407         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1408     </member>
1409     <member name="M:System.Linq.ParallelEnumerable.Min(System.Linq.ParallelQuery{System.Int32})">
1410       <summary>返回值的并行序列中的最小值。</summary>
1411       <returns>序列中的最小值。</returns>
1412       <param name="source">要确定其最小值的值序列。</param>
1413       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1414       <exception cref="T:System.ArgumentNullException">
1415         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1416       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1417       <exception cref="T:System.InvalidOperationException">
1418         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1419     </member>
1420     <member name="M:System.Linq.ParallelEnumerable.Min(System.Linq.ParallelQuery{System.Int64})">
1421       <summary>返回值的并行序列中的最小值。</summary>
1422       <returns>序列中的最小值。</returns>
1423       <param name="source">要确定其最小值的值序列。</param>
1424       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1425       <exception cref="T:System.ArgumentNullException">
1426         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1427       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1428       <exception cref="T:System.InvalidOperationException">
1429         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1430     </member>
1431     <member name="M:System.Linq.ParallelEnumerable.Min(System.Linq.ParallelQuery{System.Nullable{System.Decimal}})">
1432       <summary>返回值的并行序列中的最小值。</summary>
1433       <returns>序列中的最小值。</returns>
1434       <param name="source">要确定其最小值的值序列。</param>
1435       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1436       <exception cref="T:System.ArgumentNullException">
1437         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1438       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1439       <exception cref="T:System.InvalidOperationException">
1440         <paramref name="source" /> 中不包含任何元素。</exception>
1441     </member>
1442     <member name="M:System.Linq.ParallelEnumerable.Min(System.Linq.ParallelQuery{System.Nullable{System.Double}})">
1443       <summary>返回值的并行序列中的最小值。</summary>
1444       <returns>序列中的最小值。</returns>
1445       <param name="source">要确定其最小值的值序列。</param>
1446       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1447       <exception cref="T:System.ArgumentNullException">
1448         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1449       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1450       <exception cref="T:System.InvalidOperationException">
1451         <paramref name="source" /> 中不包含任何元素。</exception>
1452     </member>
1453     <member name="M:System.Linq.ParallelEnumerable.Min(System.Linq.ParallelQuery{System.Nullable{System.Int32}})">
1454       <summary>返回值的并行序列中的最小值。</summary>
1455       <returns>序列中的最小值。</returns>
1456       <param name="source">要确定其最小值的值序列。</param>
1457       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1458       <exception cref="T:System.ArgumentNullException">
1459         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1460       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1461       <exception cref="T:System.InvalidOperationException">
1462         <paramref name="source" /> 中不包含任何元素。</exception>
1463     </member>
1464     <member name="M:System.Linq.ParallelEnumerable.Min(System.Linq.ParallelQuery{System.Nullable{System.Int64}})">
1465       <summary>返回值的并行序列中的最小值。</summary>
1466       <returns>序列中的最小值。</returns>
1467       <param name="source">要确定其最小值的值序列。</param>
1468       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1469       <exception cref="T:System.ArgumentNullException">
1470         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1471       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1472       <exception cref="T:System.InvalidOperationException">
1473         <paramref name="source" /> 中不包含任何元素。</exception>
1474     </member>
1475     <member name="M:System.Linq.ParallelEnumerable.Min(System.Linq.ParallelQuery{System.Nullable{System.Single}})">
1476       <summary>返回值的并行序列中的最小值。</summary>
1477       <returns>序列中的最小值。</returns>
1478       <param name="source">要确定其最小值的值序列。</param>
1479       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1480       <exception cref="T:System.ArgumentNullException">
1481         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1482       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1483       <exception cref="T:System.InvalidOperationException">
1484         <paramref name="source" /> 中不包含任何元素。</exception>
1485     </member>
1486     <member name="M:System.Linq.ParallelEnumerable.Min(System.Linq.ParallelQuery{System.Single})">
1487       <summary>返回值的并行序列中的最小值。</summary>
1488       <returns>序列中的最小值。</returns>
1489       <param name="source">要确定其最小值的值序列。</param>
1490       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1491       <exception cref="T:System.ArgumentNullException">
1492         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1493       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1494       <exception cref="T:System.InvalidOperationException">
1495         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1496     </member>
1497     <member name="M:System.Linq.ParallelEnumerable.Min``1(System.Linq.ParallelQuery{``0})">
1498       <summary>返回值的并行序列中的最小值。</summary>
1499       <returns>序列中的最小值。</returns>
1500       <param name="source">要确定其最小值的值序列。</param>
1501       <typeparam name="TSource">
1502         <paramref name="source" /> 中的元素的类型。</typeparam>
1503       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1504       <exception cref="T:System.ArgumentNullException">
1505         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1506       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1507       <exception cref="T:System.InvalidOperationException">
1508         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1509     </member>
1510     <member name="M:System.Linq.ParallelEnumerable.Min``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Decimal})">
1511       <summary>对一个序列中的每个元素并行调用转换函数,并返回最小值。</summary>
1512       <returns>序列中的最小值。</returns>
1513       <param name="source">要确定其最小值的值序列。</param>
1514       <param name="selector">应用于每个元素的转换函数。</param>
1515       <typeparam name="TSource">
1516         <paramref name="source" /> 中的元素的类型。</typeparam>
1517       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1518       <exception cref="T:System.ArgumentNullException">
1519         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1520       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1521       <exception cref="T:System.InvalidOperationException">
1522         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1523     </member>
1524     <member name="M:System.Linq.ParallelEnumerable.Min``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Double})">
1525       <summary>对一个序列中的每个元素并行调用转换函数,并返回最小值。</summary>
1526       <returns>序列中的最小值。</returns>
1527       <param name="source">要确定其最小值的值序列。</param>
1528       <param name="selector">应用于每个元素的转换函数。</param>
1529       <typeparam name="TSource">
1530         <paramref name="source" /> 中的元素的类型。</typeparam>
1531       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1532       <exception cref="T:System.ArgumentNullException">
1533         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1534       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1535       <exception cref="T:System.InvalidOperationException">
1536         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1537     </member>
1538     <member name="M:System.Linq.ParallelEnumerable.Min``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Int32})">
1539       <summary>对一个序列中的每个元素并行调用转换函数,并返回最小值。</summary>
1540       <returns>序列中的最小值。</returns>
1541       <param name="source">要确定其最小值的值序列。</param>
1542       <param name="selector">应用于每个元素的转换函数。</param>
1543       <typeparam name="TSource">
1544         <paramref name="source" /> 中的元素的类型。</typeparam>
1545       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1546       <exception cref="T:System.ArgumentNullException">
1547         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1548       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1549       <exception cref="T:System.InvalidOperationException">
1550         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1551     </member>
1552     <member name="M:System.Linq.ParallelEnumerable.Min``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Int64})">
1553       <summary>对一个序列中的每个元素并行调用转换函数,并返回最小值。</summary>
1554       <returns>序列中的最小值。</returns>
1555       <param name="source">要确定其最小值的值序列。</param>
1556       <param name="selector">应用于每个元素的转换函数。</param>
1557       <typeparam name="TSource">
1558         <paramref name="source" /> 中的元素的类型。</typeparam>
1559       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1560       <exception cref="T:System.ArgumentNullException">
1561         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1562       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1563       <exception cref="T:System.InvalidOperationException">
1564         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1565     </member>
1566     <member name="M:System.Linq.ParallelEnumerable.Min``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Decimal}})">
1567       <summary>对一个序列中的每个元素并行调用转换函数,并返回最小值。</summary>
1568       <returns>序列中的最小值。</returns>
1569       <param name="source">要确定其最小值的值序列。</param>
1570       <param name="selector">应用于每个元素的转换函数。</param>
1571       <typeparam name="TSource">
1572         <paramref name="source" /> 中的元素的类型。</typeparam>
1573       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1574       <exception cref="T:System.ArgumentNullException">
1575         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1576       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1577       <exception cref="T:System.InvalidOperationException">
1578         <paramref name="source" /> 中不包含任何元素。</exception>
1579     </member>
1580     <member name="M:System.Linq.ParallelEnumerable.Min``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Double}})">
1581       <summary>对一个序列中的每个元素并行调用转换函数,并返回最小值。</summary>
1582       <returns>序列中的最小值。</returns>
1583       <param name="source">要确定其最小值的值序列。</param>
1584       <param name="selector">应用于每个元素的转换函数。</param>
1585       <typeparam name="TSource">
1586         <paramref name="source" /> 中的元素的类型。</typeparam>
1587       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1588       <exception cref="T:System.ArgumentNullException">
1589         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1590       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1591       <exception cref="T:System.InvalidOperationException">
1592         <paramref name="source" /> 中不包含任何元素。</exception>
1593     </member>
1594     <member name="M:System.Linq.ParallelEnumerable.Min``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Int32}})">
1595       <summary>对一个序列中的每个元素并行调用转换函数,并返回最小值。</summary>
1596       <returns>序列中的最小值。</returns>
1597       <param name="source">要确定其最小值的值序列。</param>
1598       <param name="selector">应用于每个元素的转换函数。</param>
1599       <typeparam name="TSource">
1600         <paramref name="source" /> 中的元素的类型。</typeparam>
1601       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1602       <exception cref="T:System.ArgumentNullException">
1603         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1604       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1605       <exception cref="T:System.InvalidOperationException">
1606         <paramref name="source" /> 中不包含任何元素。</exception>
1607     </member>
1608     <member name="M:System.Linq.ParallelEnumerable.Min``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Int64}})">
1609       <summary>对一个序列中的每个元素并行调用转换函数,并返回最小值。</summary>
1610       <returns>序列中的最小值。</returns>
1611       <param name="source">要确定其最小值的值序列。</param>
1612       <param name="selector">应用于每个元素的转换函数。</param>
1613       <typeparam name="TSource">
1614         <paramref name="source" /> 中的元素的类型。</typeparam>
1615       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1616       <exception cref="T:System.ArgumentNullException">
1617         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1618       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1619       <exception cref="T:System.InvalidOperationException">
1620         <paramref name="source" /> 中不包含任何元素。</exception>
1621     </member>
1622     <member name="M:System.Linq.ParallelEnumerable.Min``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Single}})">
1623       <summary>对一个序列中的每个元素并行调用转换函数,并返回最小值。</summary>
1624       <returns>序列中的最小值。</returns>
1625       <param name="source">要确定其最小值的值序列。</param>
1626       <param name="selector">应用于每个元素的转换函数。</param>
1627       <typeparam name="TSource">
1628         <paramref name="source" /> 中的元素的类型。</typeparam>
1629       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1630       <exception cref="T:System.ArgumentNullException">
1631         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1632       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1633       <exception cref="T:System.InvalidOperationException">
1634         <paramref name="source" /> 中不包含任何元素。</exception>
1635     </member>
1636     <member name="M:System.Linq.ParallelEnumerable.Min``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Single})">
1637       <summary>对一个序列中的每个元素并行调用转换函数,并返回最小值。</summary>
1638       <returns>序列中的最小值。</returns>
1639       <param name="source">要确定其最小值的值序列。</param>
1640       <param name="selector">应用于每个元素的转换函数。</param>
1641       <typeparam name="TSource">
1642         <paramref name="source" /> 中的元素的类型。</typeparam>
1643       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1644       <exception cref="T:System.ArgumentNullException">
1645         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1646       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1647       <exception cref="T:System.InvalidOperationException">
1648         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1649     </member>
1650     <member name="M:System.Linq.ParallelEnumerable.Min``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})">
1651       <summary>对一个序列中的每个元素并行调用转换函数,并返回最小值。</summary>
1652       <returns>序列中的最小值。</returns>
1653       <param name="source">要确定其最小值的值序列。</param>
1654       <param name="selector">应用于每个元素的转换函数。</param>
1655       <typeparam name="TSource">
1656         <paramref name="source" /> 中的元素的类型。</typeparam>
1657       <typeparam name="TResult">
1658         <paramref name="selector" /> 返回的值的类型。</typeparam>
1659       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1660       <exception cref="T:System.ArgumentNullException">
1661         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1662       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1663       <exception cref="T:System.InvalidOperationException">
1664         <paramref name="source" /> 不包含任何元素,且 <paramref name="TSource" /> 是不可为 null 的值类型。</exception>
1665     </member>
1666     <member name="M:System.Linq.ParallelEnumerable.OfType``1(System.Linq.ParallelQuery)">
1667       <summary>根据指定类型筛选 ParallelQuery 的元素。</summary>
1668       <returns>一个序列,其中包含类型的输入序列中的元素。</returns>
1669       <param name="source">要筛选其元素的序列。</param>
1670       <typeparam name="TResult">筛选序列元素所根据的类型。</typeparam>
1671       <exception cref="T:System.ArgumentNullException">
1672         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1673       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1674       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1675     </member>
1676     <member name="M:System.Linq.ParallelEnumerable.OrderBy``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})">
1677       <summary>根据键按升序对序列中的元素进行并行排序。</summary>
1678       <returns>其中的元素将根据某个键进行排序的 OrderedParallelQuery{TSource}。</returns>
1679       <param name="source">一个要排序的值序列。</param>
1680       <param name="keySelector">用于从元素中提取键的函数。</param>
1681       <typeparam name="TSource">
1682         <paramref name="source" /> 中的元素的类型。</typeparam>
1683       <typeparam name="TKey">
1684         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
1685       <exception cref="T:System.ArgumentNullException">
1686         <paramref name="source" /> 或 <paramref name="keySelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1687       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1688       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1689     </member>
1690     <member name="M:System.Linq.ParallelEnumerable.OrderBy``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
1691       <summary>使用指定的比较器按升序对序列中的元素进行并行排序。</summary>
1692       <returns>其中的元素将根据某个键进行排序的 OrderedParallelQuery{TSource}。</returns>
1693       <param name="source">一个要排序的值序列。</param>
1694       <param name="keySelector">用于从元素中提取键的函数。</param>
1695       <param name="comparer">一个用于比较键的 IComparer{TKey}。</param>
1696       <typeparam name="TSource">
1697         <paramref name="source" /> 中的元素的类型。</typeparam>
1698       <typeparam name="TKey">
1699         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
1700       <exception cref="T:System.ArgumentNullException">
1701         <paramref name="source" /> 或 <paramref name="keySelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1702       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1703       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1704     </member>
1705     <member name="M:System.Linq.ParallelEnumerable.OrderByDescending``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})">
1706       <summary>根据键按降序对序列中的元素进行并行排序。</summary>
1707       <returns>一个 OrderedParallelQuery{TSource},其元素将根据某个键按降序进行排序。</returns>
1708       <param name="source">一个要排序的值序列。</param>
1709       <param name="keySelector">用于从元素中提取键的函数。</param>
1710       <typeparam name="TSource">
1711         <paramref name="source" /> 中的元素的类型。</typeparam>
1712       <typeparam name="TKey">
1713         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
1714       <exception cref="T:System.ArgumentNullException">
1715         <paramref name="source" /> 或 <paramref name="keySelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1716       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1717       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1718     </member>
1719     <member name="M:System.Linq.ParallelEnumerable.OrderByDescending``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
1720       <summary>使用指定的比较器按降序对序列的元素排序。</summary>
1721       <returns>一个 OrderedParallelQuery{TSource},其元素将根据某个键按降序进行排序。</returns>
1722       <param name="source">一个要排序的值序列。</param>
1723       <param name="keySelector">用于从元素中提取键的函数。</param>
1724       <param name="comparer">一个用于比较键的 IComparer{TKey}。</param>
1725       <typeparam name="TSource">
1726         <paramref name="source" /> 中的元素的类型。</typeparam>
1727       <typeparam name="TKey">
1728         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
1729       <exception cref="T:System.ArgumentNullException">
1730         <paramref name="source" /> 或 <paramref name="KeySelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1731       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1732       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1733     </member>
1734     <member name="M:System.Linq.ParallelEnumerable.Range(System.Int32,System.Int32)">
1735       <summary>生成指定范围内的整数的并行序列。</summary>
1736       <returns>C# 中的 IEnumerable&lt;Int32&gt; 或 Visual Basic 中的 IEnumerable(Of Int32),其中包含某个范围的顺序整数。</returns>
1737       <param name="start">序列中第一个整数的值。</param>
1738       <param name="count">要生成的顺序整数的数目。</param>
1739       <exception cref="T:System.ArgumentOutOfRangeException">
1740         <paramref name="count" /> 小于 0 - 或 - <paramref name="start" /> + <paramref name="count" /> - 1 大于 <see cref="F:System.Int32.MaxValue" />。</exception>
1741     </member>
1742     <member name="M:System.Linq.ParallelEnumerable.Repeat``1(``0,System.Int32)">
1743       <summary>生成包含一个重复值的并行序列。</summary>
1744       <returns>一个包含重复值的序列。</returns>
1745       <param name="element">要重复的值。</param>
1746       <param name="count">在生成序列中重复该值的次数。</param>
1747       <typeparam name="TResult">要在结果序列中重复的值的类型。</typeparam>
1748       <exception cref="T:System.ArgumentOutOfRangeException">
1749         <paramref name="count" /> 小于 0。</exception>
1750     </member>
1751     <member name="M:System.Linq.ParallelEnumerable.Reverse``1(System.Linq.ParallelQuery{``0})">
1752       <summary>反转并行序列中元素的顺序。</summary>
1753       <returns>一个序列,其元素以相反顺序对应于输入序列的元素。</returns>
1754       <param name="source">要反转的值序列。</param>
1755       <typeparam name="TSource">
1756         <paramref name="source" /> 中的元素的类型。</typeparam>
1757       <exception cref="T:System.ArgumentNullException">
1758         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1759       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1760       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1761     </member>
1762     <member name="M:System.Linq.ParallelEnumerable.Select``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})">
1763       <summary>将序列中的每个元素并行投影到新窗体中。</summary>
1764       <returns>一个序列,其元素是对 <paramref name="source" /> 的每个元素调用转换函数的结果。</returns>
1765       <param name="source">一个值序列,要对该序列调用转换函数。</param>
1766       <param name="selector">应用于每个元素的转换函数。</param>
1767       <typeparam name="TSource">
1768         <paramref name="source" /> 中的元素的类型。</typeparam>
1769       <typeparam name="TResult">选择器返回的元素的类型。</typeparam>
1770       <exception cref="T:System.ArgumentNullException">
1771         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1772       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1773       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1774     </member>
1775     <member name="M:System.Linq.ParallelEnumerable.Select``2(System.Linq.ParallelQuery{``0},System.Func{``0,System.Int32,``1})">
1776       <summary>通过合并元素的索引,将序列的每个元素并行投影到新窗体中。</summary>
1777       <returns>一个序列,其元素是对基于提供到 <paramref name="selector" /> 的索引的 <paramref name="source" /> 中的每个元素调用转换函数的结果。</returns>
1778       <param name="source">一个值序列,要对该序列调用转换函数。</param>
1779       <param name="selector">应用于每个元素的转换函数。</param>
1780       <typeparam name="TSource">
1781         <paramref name="source" /> 中的元素的类型。</typeparam>
1782       <typeparam name="TResult">选择器返回的元素的类型。</typeparam>
1783       <exception cref="T:System.ArgumentNullException">
1784         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1785       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1786       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1787       <exception cref="T:System.OverflowException">超过 <see cref="F:System.Int32.MaxValue" /> 个元素都是用该查询枚举。流方案中可能会出现这种情况。</exception>
1788     </member>
1789     <member name="M:System.Linq.ParallelEnumerable.SelectMany``3(System.Linq.ParallelQuery{``0},System.Func{``0,System.Collections.Generic.IEnumerable{``1}},System.Func{``0,``1,``2})">
1790       <summary>将序列的每个元素投影到 <see cref="T:System.Collections.Generic.IEnumerable`1" />,并将结果序列合并为一个序列,并对其中每个元素调用结果选择器函数。</summary>
1791       <returns>一个序列,其元素是通过以下方法得到的:对基于提供给 <paramref name="collectionSelector" /> 的 <paramref name="source" /> 的每个元素调用一对多转换函数 <paramref name="collectionSelector" />,然后将这些序列元素中的每一个元素及其相应的源元素映射到一个结果元素。 </returns>
1792       <param name="source">一个要投影的值序列。</param>
1793       <param name="collectionSelector">一个应用于每个源元素的转换函数;函数的第二个参数表示源元素的索引。</param>
1794       <param name="resultSelector">用于从第一个序列的元素和第二个序列的匹配元素集合中创建结果元素的函数。</param>
1795       <typeparam name="TSource">
1796         <paramref name="collectionSelector" /> 收集的中间元素的类型。</typeparam>
1797       <typeparam name="TCollection">
1798         <paramref name="source" /> 中的元素的类型。</typeparam>
1799       <typeparam name="TResult">结果序列中的元素的类型。</typeparam>
1800       <exception cref="T:System.ArgumentNullException">
1801         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1802       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1803       <exception cref="T:System.OverflowException">超过 <see cref="F:System.Int32.MaxValue" /> 个元素都是用该查询枚举。</exception>
1804       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1805     </member>
1806     <member name="M:System.Linq.ParallelEnumerable.SelectMany``2(System.Linq.ParallelQuery{``0},System.Func{``0,System.Collections.Generic.IEnumerable{``1}})">
1807       <summary>将序列的每个元素以并行方式投影到 <see cref="T:System.Collections.Generic.IEnumerable`1" /> 并将结果序列合并为一个序列。</summary>
1808       <returns>一个序列,其元素是对输入序列的每个元素调用一对多转换函数的结果。</returns>
1809       <param name="source">一个要投影的值序列。</param>
1810       <param name="selector">应用于每个元素的转换函数。</param>
1811       <typeparam name="TSource">
1812         <paramref name="source" /> 中的元素的类型。</typeparam>
1813       <typeparam name="TResult">选择器返回的序列元素的类型。</typeparam>
1814       <exception cref="T:System.ArgumentNullException">
1815         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1816       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1817       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1818     </member>
1819     <member name="M:System.Linq.ParallelEnumerable.SelectMany``3(System.Linq.ParallelQuery{``0},System.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}},System.Func{``0,``1,``2})">
1820       <summary>将序列的每个元素投影到 <see cref="T:System.Collections.Generic.IEnumerable`1" />,并将结果序列合并为一个序列,并对其中每个元素调用结果选择器函数。每个源元素的索引用于该元素的中间投影表。</summary>
1821       <returns>一个序列,其元素是通过以下方法得到的:对基于提供给 <paramref name="collectionSelector" /> 的 <paramref name="source" /> 的每个元素调用一对多转换函数 <paramref name="collectionSelector" />,然后将这些序列元素中的每一个元素及其相应的源元素映射到一个结果元素。</returns>
1822       <param name="source">一个要投影的值序列。</param>
1823       <param name="collectionSelector">一个应用于每个源元素的转换函数;函数的第二个参数表示源元素的索引。</param>
1824       <param name="resultSelector">用于从第一个序列的元素和第二个序列的匹配元素集合中创建结果元素的函数。</param>
1825       <typeparam name="TSource">
1826         <paramref name="collectionSelector" /> 收集的中间元素的类型。</typeparam>
1827       <typeparam name="TCollection">
1828         <paramref name="source" /> 中的元素的类型。</typeparam>
1829       <typeparam name="TResult">要返回的元素的类型。</typeparam>
1830       <exception cref="T:System.ArgumentNullException">
1831         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1832       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1833       <exception cref="T:System.OverflowException">超过 <see cref="F:System.Int32.MaxValue" /> 个元素都是用该查询枚举。</exception>
1834       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1835     </member>
1836     <member name="M:System.Linq.ParallelEnumerable.SelectMany``2(System.Linq.ParallelQuery{``0},System.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}})">
1837       <summary>将序列的每个元素以并行方式投影到 <see cref="T:System.Collections.Generic.IEnumerable`1" /> 并将结果序列合并为一个序列。每个源元素的索引用于该元素的投影表。</summary>
1838       <returns>一个序列,其元素是对输入序列的每个元素调用一对多转换函数的结果。</returns>
1839       <param name="source">一个要投影的值序列。</param>
1840       <param name="selector">应用于每个元素的转换函数。</param>
1841       <typeparam name="TSource">
1842         <paramref name="source" /> 中的元素的类型。</typeparam>
1843       <typeparam name="TResult">选择器返回的序列元素的类型。</typeparam>
1844       <exception cref="T:System.ArgumentNullException">
1845         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1846       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1847       <exception cref="T:System.OverflowException">超过 <see cref="F:System.Int32.MaxValue" /> 个元素都是用该查询枚举。</exception>
1848       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1849     </member>
1850     <member name="M:System.Linq.ParallelEnumerable.SequenceEqual``1(System.Linq.ParallelQuery{``0},System.Collections.Generic.IEnumerable{``0})">
1851       <summary>切勿调用此 SequenceEqual 重载。此方法已标记为过时,调用此方法时总是会引发 <see cref="T:System.NotSupportedException" />。</summary>
1852       <returns>此重载总是会引发 <see cref="T:System.NotSupportedException" />。</returns>
1853       <param name="first">未使用此参数。</param>
1854       <param name="second">未使用此参数。</param>
1855       <typeparam name="TSource">未使用此类型参数。</typeparam>
1856       <exception cref="T:System.NotSupportedException">每次调用此方法时引发。</exception>
1857     </member>
1858     <member name="M:System.Linq.ParallelEnumerable.SequenceEqual``1(System.Linq.ParallelQuery{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
1859       <summary>切勿调用此 SequenceEqual 重载。此方法已标记为过时,调用此方法时总是会引发 <see cref="T:System.NotSupportedException" />。</summary>
1860       <returns>此重载总是会引发 <see cref="T:System.NotSupportedException" />。</returns>
1861       <param name="first">未使用此参数。</param>
1862       <param name="second">未使用此参数。</param>
1863       <param name="comparer">未使用此参数。</param>
1864       <typeparam name="TSource">未使用此类型参数。</typeparam>
1865       <exception cref="T:System.NotSupportedException">每次调用此方法时引发。</exception>
1866     </member>
1867     <member name="M:System.Linq.ParallelEnumerable.SequenceEqual``1(System.Linq.ParallelQuery{``0},System.Linq.ParallelQuery{``0})">
1868       <summary>通过使用相应类型的默认相等比较器对序列的元素进行比较,以确定两个并行序列是否相等。</summary>
1869       <returns>如果根据相应类型的默认相等比较器,两个源序列的长度相等,且其相应元素相等,则为 true;否则为 false。</returns>
1870       <param name="first">要与第二个序列进行比较的序列。</param>
1871       <param name="second">要与第一个输入序列进行比较的序列。</param>
1872       <typeparam name="TSource">输入序列中的元素的类型。</typeparam>
1873       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1874       <exception cref="T:System.ArgumentNullException">
1875         <paramref name="first" /> 或 <paramref name="second" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1876       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1877     </member>
1878     <member name="M:System.Linq.ParallelEnumerable.SequenceEqual``1(System.Linq.ParallelQuery{``0},System.Linq.ParallelQuery{``0},System.Collections.Generic.IEqualityComparer{``0})">
1879       <summary>使用指定的 IEqualityComparer{T} 对两个并行序列的元素进行比较,以确定这两个序列是否相等。</summary>
1880       <returns>如果根据相应类型的默认相等比较器,两个源序列的长度相等,且其相应元素相等,则为 true;否则为 false。</returns>
1881       <param name="first">要与 <paramref name="second" /> 进行比较的序列。</param>
1882       <param name="second">要与第一个输入序列进行比较的序列。</param>
1883       <param name="comparer">一个用于比较元素的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
1884       <typeparam name="TSource">输入序列中的元素的类型。</typeparam>
1885       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1886       <exception cref="T:System.ArgumentNullException">
1887         <paramref name="first" /> 或 <paramref name="second" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1888       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1889     </member>
1890     <member name="M:System.Linq.ParallelEnumerable.Single``1(System.Linq.ParallelQuery{``0})">
1891       <summary>返回并行序列的唯一元素;如果该序列并非恰好包含一个元素,则会引发异常。</summary>
1892       <returns>输入序列的单个元素。</returns>
1893       <param name="source">要返回其单个元素的序列。</param>
1894       <typeparam name="TSource">
1895         <paramref name="source" /> 中的元素的类型。</typeparam>
1896       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1897       <exception cref="T:System.ArgumentNullException">
1898         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1899       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1900       <exception cref="T:System.InvalidOperationException">输入序列包含多个元素。- 或 - 输入序列为空。</exception>
1901     </member>
1902     <member name="M:System.Linq.ParallelEnumerable.Single``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Boolean})">
1903       <summary>返回并行序列中满足指定条件的唯一元素;如果有多个这样的元素存在,则会引发异常。</summary>
1904       <returns>输入序列中满足条件的单个元素。</returns>
1905       <param name="source">要返回其单个元素的序列。</param>
1906       <param name="predicate">用于测试元素是否满足条件的函数。</param>
1907       <typeparam name="TSource">
1908         <paramref name="source" /> 中的元素的类型。</typeparam>
1909       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1910       <exception cref="T:System.ArgumentNullException">
1911         <paramref name="source" /> 或 <paramref name="predicate" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1912       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1913       <exception cref="T:System.InvalidOperationException">没有元素满足 <paramref name="predicate" /> 中的条件。- 或 - 多个元素满足 <paramref name="predicate" /> 中的条件。</exception>
1914     </member>
1915     <member name="M:System.Linq.ParallelEnumerable.SingleOrDefault``1(System.Linq.ParallelQuery{``0})">
1916       <summary>返回并行序列中的唯一元素;如果该序列为空,则返回默认值;如果该序列包含多个元素,此方法将引发异常。</summary>
1917       <returns>返回输入序列的单个元素;如果序列不包含任何元素,则返回 default()。</returns>
1918       <param name="source">要返回其单个元素的序列。</param>
1919       <typeparam name="TSource">
1920         <paramref name="source" /> 中的元素的类型。</typeparam>
1921       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1922       <exception cref="T:System.ArgumentNullException">
1923         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1924       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1925     </member>
1926     <member name="M:System.Linq.ParallelEnumerable.SingleOrDefault``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Boolean})">
1927       <summary>返回并行序列中满足指定条件的唯一元素;如果这类元素不存在,则返回默认值;如果有多个元素满足该条件,此方法将引发异常。</summary>
1928       <returns>输入序列中满足条件的单个元素,如果未找到这样的元素,则为 default()。</returns>
1929       <param name="source">要返回其单个元素的序列。</param>
1930       <param name="predicate">用于测试元素是否满足条件的函数。</param>
1931       <typeparam name="TSource">
1932         <paramref name="source" /> 中的元素的类型。</typeparam>
1933       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1934       <exception cref="T:System.ArgumentNullException">
1935         <paramref name="source" /> 或 <paramref name="predicate" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1936       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1937       <exception cref="T:System.InvalidOperationException">
1938         <paramref name="source" /> 是空的,或者返回了多个元素。</exception>
1939     </member>
1940     <member name="M:System.Linq.ParallelEnumerable.Skip``1(System.Linq.ParallelQuery{``0},System.Int32)">
1941       <summary>跳过并行序列中指定数量的元素,然后返回剩余的元素。</summary>
1942       <returns>一个序列,其中包含输入序列中的指定索引后出现的元素。</returns>
1943       <param name="source">要从其返回元素的序列。</param>
1944       <param name="count">返回剩余元素前要跳过的元素数量。</param>
1945       <typeparam name="TSource">
1946         <paramref name="source" /> 中的元素的类型。</typeparam>
1947       <exception cref="T:System.ArgumentNullException">
1948         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1949       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1950       <exception cref="T:System.OverflowException">计数比 <see cref="F:System.Int32.MaxValue" /> 大</exception>
1951       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1952     </member>
1953     <member name="M:System.Linq.ParallelEnumerable.SkipWhile``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Boolean})">
1954       <summary>跳过并行序列中满足指定条件的任何元素,然后返回剩余元素。</summary>
1955       <returns>一个序列,它包含输入序列中从没有通过谓词指定的测试的线性系列中第一个元素开始的元素。</returns>
1956       <param name="source">要从其返回元素的序列。</param>
1957       <param name="predicate">用于测试每个元素是否满足条件的函数。</param>
1958       <typeparam name="TSource">
1959         <paramref name="source" /> 中的元素的类型。</typeparam>
1960       <exception cref="T:System.ArgumentNullException">
1961         <paramref name="source" /> 或 <paramref name="predicate" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1962       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1963       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1964     </member>
1965     <member name="M:System.Linq.ParallelEnumerable.SkipWhile``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Int32,System.Boolean})">
1966       <summary>跳过并行序列中满足指定条件的任何元素,然后返回剩余元素。将在谓词函数的逻辑中使用元素的索引。</summary>
1967       <returns>一个序列,它包含输入序列中从没有通过谓词指定的测试的线性系列中第一个元素开始的元素。</returns>
1968       <param name="source">要从其返回元素的序列。</param>
1969       <param name="predicate">用于测试每个源元素是否满足条件的函数;该函数的第二个参数表示源元素的索引。</param>
1970       <typeparam name="TSource">
1971         <paramref name="source" /> 中的元素的类型。</typeparam>
1972       <exception cref="T:System.ArgumentNullException">
1973         <paramref name="source" /> 或 <paramref name="predicate" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1974       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1975       <exception cref="T:System.OverflowException">超过 <see cref="F:System.Int32.MaxValue" /> 个元素都是用该查询枚举。</exception>
1976       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
1977     </member>
1978     <member name="M:System.Linq.ParallelEnumerable.Sum(System.Linq.ParallelQuery{System.Decimal})">
1979       <summary>并行计算一个值序列的和。</summary>
1980       <returns>序列中投影值的总和。</returns>
1981       <param name="source">一个要对其求和的值序列。</param>
1982       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1983       <exception cref="T:System.ArgumentNullException">
1984         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1985       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Decimal.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
1986     </member>
1987     <member name="M:System.Linq.ParallelEnumerable.Sum(System.Linq.ParallelQuery{System.Double})">
1988       <summary>并行计算一个值序列的和。</summary>
1989       <returns>序列中投影值的总和。</returns>
1990       <param name="source">一个要对其求和的值序列。</param>
1991       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
1992       <exception cref="T:System.ArgumentNullException">
1993         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
1994       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Double.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
1995     </member>
1996     <member name="M:System.Linq.ParallelEnumerable.Sum(System.Linq.ParallelQuery{System.Int32})">
1997       <summary>并行计算一个值序列的和。</summary>
1998       <returns>序列中投影值的总和。</returns>
1999       <param name="source">一个要对其求和的值序列。</param>
2000       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2001       <exception cref="T:System.ArgumentNullException">
2002         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2003       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Int32.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2004     </member>
2005     <member name="M:System.Linq.ParallelEnumerable.Sum(System.Linq.ParallelQuery{System.Int64})">
2006       <summary>并行计算一个值序列的和。</summary>
2007       <returns>序列中投影值的总和。</returns>
2008       <param name="source">一个要对其求和的值序列。</param>
2009       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2010       <exception cref="T:System.ArgumentNullException">
2011         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2012       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Int64.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2013     </member>
2014     <member name="M:System.Linq.ParallelEnumerable.Sum(System.Linq.ParallelQuery{System.Nullable{System.Decimal}})">
2015       <summary>并行计算一个值序列的和。</summary>
2016       <returns>序列中投影值的总和。</returns>
2017       <param name="source">一个要对其求和的值序列。</param>
2018       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2019       <exception cref="T:System.ArgumentNullException">
2020         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2021       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Decimal.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2022     </member>
2023     <member name="M:System.Linq.ParallelEnumerable.Sum(System.Linq.ParallelQuery{System.Nullable{System.Double}})">
2024       <summary>并行计算一个值序列的和。</summary>
2025       <returns>序列中投影值的总和。</returns>
2026       <param name="source">一个要对其求和的值序列。</param>
2027       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2028       <exception cref="T:System.ArgumentNullException">
2029         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2030       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Double.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2031     </member>
2032     <member name="M:System.Linq.ParallelEnumerable.Sum(System.Linq.ParallelQuery{System.Nullable{System.Int32}})">
2033       <summary>并行计算一个值序列的和。</summary>
2034       <returns>序列中投影值的总和。</returns>
2035       <param name="source">一个要对其求和的值序列。</param>
2036       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2037       <exception cref="T:System.ArgumentNullException">
2038         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2039       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Int32.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2040     </member>
2041     <member name="M:System.Linq.ParallelEnumerable.Sum(System.Linq.ParallelQuery{System.Nullable{System.Int64}})">
2042       <summary>并行计算一个值序列的和。</summary>
2043       <returns>序列中投影值的总和。</returns>
2044       <param name="source">一个要对其求和的值序列。</param>
2045       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2046       <exception cref="T:System.ArgumentNullException">
2047         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2048       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Int64.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2049     </member>
2050     <member name="M:System.Linq.ParallelEnumerable.Sum(System.Linq.ParallelQuery{System.Nullable{System.Single}})">
2051       <summary>并行计算一个值序列的和。</summary>
2052       <returns>序列中投影值的总和。</returns>
2053       <param name="source">一个要对其求和的值序列。</param>
2054       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2055       <exception cref="T:System.ArgumentNullException">
2056         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2057       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Single.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2058     </member>
2059     <member name="M:System.Linq.ParallelEnumerable.Sum(System.Linq.ParallelQuery{System.Single})">
2060       <summary>并行计算一个值序列的和。</summary>
2061       <returns>序列中投影值的总和。</returns>
2062       <param name="source">一个要对其求和的值序列。</param>
2063       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2064       <exception cref="T:System.ArgumentNullException">
2065         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2066       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Single.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2067     </member>
2068     <member name="M:System.Linq.ParallelEnumerable.Sum``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Decimal})">
2069       <summary>并行计算一个值序列的和,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
2070       <returns>序列中投影值的总和。</returns>
2071       <param name="source">一个要对其求和的值序列。</param>
2072       <param name="selector">应用于每个元素的转换函数。</param>
2073       <typeparam name="TSource">
2074         <paramref name="source" /> 中的元素的类型。</typeparam>
2075       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2076       <exception cref="T:System.ArgumentNullException">
2077         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2078       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Decimal.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2079     </member>
2080     <member name="M:System.Linq.ParallelEnumerable.Sum``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Double})">
2081       <summary>并行计算一个值序列的和,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
2082       <returns>序列中投影值的总和。</returns>
2083       <param name="source">一个要对其求和的值序列。</param>
2084       <param name="selector">应用于每个元素的转换函数。</param>
2085       <typeparam name="TSource">
2086         <paramref name="source" /> 中的元素的类型。</typeparam>
2087       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2088       <exception cref="T:System.ArgumentNullException">
2089         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2090       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Double.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2091     </member>
2092     <member name="M:System.Linq.ParallelEnumerable.Sum``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Int32})">
2093       <summary>并行计算一个值序列的和,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
2094       <returns>序列中投影值的总和。</returns>
2095       <param name="source">一个要对其求和的值序列。</param>
2096       <param name="selector">应用于每个元素的转换函数。</param>
2097       <typeparam name="TSource">源序列中的元素的类型。</typeparam>
2098       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2099       <exception cref="T:System.ArgumentNullException">
2100         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2101       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Int32.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2102     </member>
2103     <member name="M:System.Linq.ParallelEnumerable.Sum``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Int64})">
2104       <summary>并行计算一个值序列的和,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
2105       <returns>序列中投影值的总和。</returns>
2106       <param name="source">一个要对其求和的值序列。</param>
2107       <param name="selector">应用于每个元素的转换函数。</param>
2108       <typeparam name="TSource">
2109         <paramref name="source" /> 中的元素的类型。</typeparam>
2110       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2111       <exception cref="T:System.ArgumentNullException">
2112         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2113       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Int64.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2114     </member>
2115     <member name="M:System.Linq.ParallelEnumerable.Sum``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Decimal}})">
2116       <summary>并行计算一个值序列的和,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
2117       <returns>序列中投影值的总和。</returns>
2118       <param name="source">一个要对其求和的值序列。</param>
2119       <param name="selector">应用于每个元素的转换函数。</param>
2120       <typeparam name="TSource">
2121         <paramref name="source" /> 中的元素的类型。</typeparam>
2122       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2123       <exception cref="T:System.ArgumentNullException">
2124         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2125       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Decimal.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2126     </member>
2127     <member name="M:System.Linq.ParallelEnumerable.Sum``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Double}})">
2128       <summary>并行计算一个值序列的和,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
2129       <returns>序列中投影值的总和。</returns>
2130       <param name="source">一个要对其求和的值序列。</param>
2131       <param name="selector">应用于每个元素的转换函数。</param>
2132       <typeparam name="TSource">
2133         <paramref name="source" /> 中的元素的类型。</typeparam>
2134       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2135       <exception cref="T:System.ArgumentNullException">
2136         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2137       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Double.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2138     </member>
2139     <member name="M:System.Linq.ParallelEnumerable.Sum``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Int32}})">
2140       <summary>并行计算一个值序列的和,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
2141       <returns>序列中投影值的总和。</returns>
2142       <param name="source">一个要对其求和的值序列。</param>
2143       <param name="selector">应用于每个元素的转换函数。</param>
2144       <typeparam name="TSource">
2145         <paramref name="source" /> 中的元素的类型。</typeparam>
2146       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2147       <exception cref="T:System.ArgumentNullException">
2148         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2149       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Int32.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2150     </member>
2151     <member name="M:System.Linq.ParallelEnumerable.Sum``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Int64}})">
2152       <summary>并行计算一个值序列的和,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
2153       <returns>序列中投影值的总和。</returns>
2154       <param name="source">一个要对其求和的值序列。</param>
2155       <param name="selector">应用于每个元素的转换函数。</param>
2156       <typeparam name="TSource">
2157         <paramref name="source" /> 中的元素的类型。</typeparam>
2158       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2159       <exception cref="T:System.ArgumentNullException">
2160         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2161       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Int64.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2162     </member>
2163     <member name="M:System.Linq.ParallelEnumerable.Sum``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Nullable{System.Single}})">
2164       <summary>并行计算一个值序列的和,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
2165       <returns>序列中投影值的总和。</returns>
2166       <param name="source">一个要对其求和的值序列。</param>
2167       <param name="selector">应用于每个元素的转换函数。</param>
2168       <typeparam name="TSource">
2169         <paramref name="source" /> 中的元素的类型。</typeparam>
2170       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2171       <exception cref="T:System.ArgumentNullException">
2172         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2173       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Single.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2174     </member>
2175     <member name="M:System.Linq.ParallelEnumerable.Sum``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Single})">
2176       <summary>并行计算一个值序列的和,这些值可通过对输入序列的每个元素调用转换函数获得。</summary>
2177       <returns>序列中投影值的总和。</returns>
2178       <param name="source">一个要对其求和的值序列。</param>
2179       <param name="selector">应用于每个元素的转换函数。</param>
2180       <typeparam name="TSource">
2181         <paramref name="source" /> 中的元素的类型。</typeparam>
2182       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2183       <exception cref="T:System.ArgumentNullException">
2184         <paramref name="source" /> 或 <paramref name="selector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2185       <exception cref="T:System.AggregateException">和大于 <see cref="F:System.Single.MaxValue" />。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2186     </member>
2187     <member name="M:System.Linq.ParallelEnumerable.Take``1(System.Linq.ParallelQuery{``0},System.Int32)">
2188       <summary>从并行序列的开头返回指定数量的连续元素。</summary>
2189       <returns>一个序列,其中包含从输入序列开始处起的指定数量的元素。</returns>
2190       <param name="source">要从其返回元素的序列。</param>
2191       <param name="count">要返回的元素数量。</param>
2192       <typeparam name="TSource">
2193         <paramref name="source" /> 中的元素的类型。</typeparam>
2194       <exception cref="T:System.ArgumentNullException">
2195         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2196       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2197       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2198     </member>
2199     <member name="M:System.Linq.ParallelEnumerable.TakeWhile``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Boolean})">
2200       <summary>只要指定的条件为 true,就会返回并行序列的元素。</summary>
2201       <returns>一个序列,它包含输入序列中出现在无法再通过测试的元素之前的元素。</returns>
2202       <param name="source">要从其返回元素的序列。</param>
2203       <param name="predicate">用于测试每个元素是否满足条件的函数。</param>
2204       <typeparam name="TSource">
2205         <paramref name="source" /> 中的元素的类型。</typeparam>
2206       <exception cref="T:System.ArgumentNullException">
2207         <paramref name="source" /> 或 <paramref name="predicate" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2208       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2209       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2210     </member>
2211     <member name="M:System.Linq.ParallelEnumerable.TakeWhile``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Int32,System.Boolean})">
2212       <summary>只要指定的条件为 true,就会返回并行序列的元素。将在谓词函数的逻辑中使用元素的索引。</summary>
2213       <returns>一个序列,它包含输入序列中出现在无法再通过测试的元素之前的元素。</returns>
2214       <param name="source">要从其返回元素的序列。</param>
2215       <param name="predicate">用于测试每个源元素是否满足条件的函数;该函数的第二个参数表示源元素的索引。</param>
2216       <typeparam name="TSource">
2217         <paramref name="source" /> 中的元素的类型。</typeparam>
2218       <exception cref="T:System.ArgumentNullException">
2219         <paramref name="source" /> 或 <paramref name="predicate" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2220       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2221       <exception cref="T:System.OverflowException">超过 <see cref="F:System.Int32.MaxValue" /> 个元素都是用这个查询枚举的。</exception>
2222       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2223     </member>
2224     <member name="M:System.Linq.ParallelEnumerable.ThenBy``2(System.Linq.OrderedParallelQuery{``0},System.Func{``0,``1})">
2225       <summary>根据某个键按升序对序列中的元素并行执行后续排序。</summary>
2226       <returns>其中的元素将根据某个键进行排序的 OrderedParallelQuery{TSource}。</returns>
2227       <param name="source">一个 OrderedParallelQuery{TSource},包含要排序的元素。</param>
2228       <param name="keySelector">用于从元素中提取键的函数。</param>
2229       <typeparam name="TSource">
2230         <paramref name="source" /> 中的元素的类型。</typeparam>
2231       <typeparam name="TKey">
2232         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
2233       <exception cref="T:System.ArgumentNullException">
2234         <paramref name="source" /> 或 <paramref name="keySelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2235       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2236       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2237     </member>
2238     <member name="M:System.Linq.ParallelEnumerable.ThenBy``2(System.Linq.OrderedParallelQuery{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
2239       <summary>使用指定的比较器按升序对序列中的元素并行执行后续排序。</summary>
2240       <returns>其中的元素将根据某个键进行排序的 OrderedParallelQuery{TSource}。</returns>
2241       <param name="source">一个 OrderedParallelQuery{TSource},包含要排序的元素。</param>
2242       <param name="keySelector">用于从元素中提取键的函数。</param>
2243       <param name="comparer">一个用于比较键的 IComparer{TKey}。</param>
2244       <typeparam name="TSource">
2245         <paramref name="source" /> 中的元素的类型。</typeparam>
2246       <typeparam name="TKey">
2247         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
2248       <exception cref="T:System.ArgumentNullException">
2249         <paramref name="source" /> 或 <paramref name="keySelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2250       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2251       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2252     </member>
2253     <member name="M:System.Linq.ParallelEnumerable.ThenByDescending``2(System.Linq.OrderedParallelQuery{``0},System.Func{``0,``1})">
2254       <summary>根据某个键按降序对序列中的元素并行执行后续排序。</summary>
2255       <returns>一个序列,将根据键按降序对其元素进行排序。</returns>
2256       <param name="source">一个 OrderedParallelQuery{TSource},包含要排序的元素。</param>
2257       <param name="keySelector">用于从元素中提取键的函数。</param>
2258       <typeparam name="TSource">
2259         <paramref name="source" /> 中的元素的类型。</typeparam>
2260       <typeparam name="TKey">
2261         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
2262       <exception cref="T:System.ArgumentNullException">
2263         <paramref name="source" /> 或 <paramref name="keySelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2264       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2265       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2266     </member>
2267     <member name="M:System.Linq.ParallelEnumerable.ThenByDescending``2(System.Linq.OrderedParallelQuery{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
2268       <summary>使用指定的比较器按降序对序列中的元素并行执行后续排序。</summary>
2269       <returns>一个序列,将根据键按降序对其元素进行排序。</returns>
2270       <param name="source">一个 OrderedParallelQuery{TSource},包含要排序的元素。</param>
2271       <param name="keySelector">用于从元素中提取键的函数。</param>
2272       <param name="comparer">一个用于比较键的 IComparer{TKey}。</param>
2273       <typeparam name="TSource">
2274         <paramref name="source" /> 中的元素的类型。</typeparam>
2275       <typeparam name="TKey">
2276         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
2277       <exception cref="T:System.ArgumentNullException">
2278         <paramref name="source" /> 或 <paramref name="keySelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2279       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2280       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2281     </member>
2282     <member name="M:System.Linq.ParallelEnumerable.ToArray``1(System.Linq.ParallelQuery{``0})">
2283       <summary>从 <see cref="T:System.Linq.ParallelQuery`1" /> 创建一个数组。</summary>
2284       <returns>一个包含输入序列中的元素的数组。</returns>
2285       <param name="source">要从其中创建数组的序列。</param>
2286       <typeparam name="TSource">
2287         <paramref name="source" /> 中的元素的类型。</typeparam>
2288       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2289       <exception cref="T:System.ArgumentNullException">
2290         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2291       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2292     </member>
2293     <member name="M:System.Linq.ParallelEnumerable.ToDictionary``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})">
2294       <summary>根据指定的键选择器函数,从 <see cref="T:System.Linq.ParallelQuery`1" /> 创建一个 <see cref="T:System.Collections.Generic.Dictionary`2" />。</summary>
2295       <returns>一个包含键和值的 <see cref="T:System.Collections.Generic.Dictionary`2" />。</returns>
2296       <param name="source">据其创建 <see cref="T:System.Collections.Generic.Dictionary`2" /> 的序列。</param>
2297       <param name="keySelector">用于从每个元素中提取键的函数。</param>
2298       <typeparam name="TSource">
2299         <paramref name="source" /> 中的元素的类型。</typeparam>
2300       <typeparam name="TKey">
2301         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
2302       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2303       <exception cref="T:System.ArgumentNullException">
2304         <paramref name="source" /> 或 <paramref name="keySelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2305       <exception cref="T:System.AggregateException">
2306         <paramref name="keySelector" /> 生成一个为 null 引用的键(在 Visual Basic 中为 Nothing)。- 或 - <paramref name="keySelector" /> 为两个元素产生了重复键。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2307     </member>
2308     <member name="M:System.Linq.ParallelEnumerable.ToDictionary``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
2309       <summary>根据指定的键选择器函数和键比较器,从 <see cref="T:System.Linq.ParallelQuery`1" /> 创建一个 <see cref="T:System.Collections.Generic.Dictionary`2" />。</summary>
2310       <returns>一个包含键和值的 <see cref="T:System.Collections.Generic.Dictionary`2" />。</returns>
2311       <param name="source">据其创建 <see cref="T:System.Collections.Generic.Dictionary`2" /> 的序列。</param>
2312       <param name="keySelector">用于从每个元素中提取键的函数。</param>
2313       <param name="comparer">一个用于比较键的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
2314       <typeparam name="TSource">
2315         <paramref name="source" /> 中的元素的类型。</typeparam>
2316       <typeparam name="TKey">
2317         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
2318       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2319       <exception cref="T:System.ArgumentNullException">
2320         <paramref name="source" /> 或 <paramref name="keySelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2321       <exception cref="T:System.AggregateException">
2322         <paramref name="keySelector" /> 生成一个为 null 引用的键(在 Visual Basic 中为 Nothing)。- 或 - <paramref name="keySelector" /> 为两个元素产生了重复键。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2323     </member>
2324     <member name="M:System.Linq.ParallelEnumerable.ToDictionary``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2})">
2325       <summary>根据指定的键选择器和元素选择器函数,从 <see cref="T:System.Linq.ParallelQuery`1" /> 创建一个 <see cref="T:System.Collections.Generic.Dictionary`2" />。</summary>
2326       <returns>一个 <see cref="T:System.Collections.Generic.Dictionary`2" />,包含从输入序列中选择的类型为 <paramref name="TElement" /> 的值。</returns>
2327       <param name="source">据其创建 <see cref="T:System.Collections.Generic.Dictionary`2" /> 的序列。</param>
2328       <param name="keySelector">用于从每个元素中提取键的函数。</param>
2329       <param name="elementSelector">用于从每个元素产生结果元素值的转换函数。</param>
2330       <typeparam name="TSource">
2331         <paramref name="source" /> 中的元素的类型。</typeparam>
2332       <typeparam name="TKey">
2333         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
2334       <typeparam name="TElement">
2335         <paramref name="elementSelector" /> 返回的值的类型。</typeparam>
2336       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2337       <exception cref="T:System.ArgumentNullException">
2338         <paramref name="source" /> 或 <paramref name="keySelector" /> 或 <paramref name="elementSelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2339       <exception cref="T:System.AggregateException">
2340         <paramref name="keySelector" /> 生成一个为 null 引用的键(在 Visual Basic 中为 Nothing)。- 或 - <paramref name="keySelector" /> 为两个元素产生了重复键。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2341     </member>
2342     <member name="M:System.Linq.ParallelEnumerable.ToDictionary``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">
2343       <summary>根据指定的键选择器函数、比较器和元素选择器函数,从 <see cref="T:System.Linq.ParallelQuery`1" /> 创建一个 <see cref="T:System.Collections.Generic.Dictionary`2" />。</summary>
2344       <returns>一个 <see cref="T:System.Collections.Generic.Dictionary`2" />,包含从输入序列中选择的类型为 <paramref name="TElement" /> 的值。</returns>
2345       <param name="source">据其创建 <see cref="T:System.Collections.Generic.Dictionary`2" /> 的序列。</param>
2346       <param name="keySelector">用于从每个元素中提取键的函数。</param>
2347       <param name="elementSelector">用于从每个元素产生结果元素值的转换函数。</param>
2348       <param name="comparer">一个用于比较键的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
2349       <typeparam name="TSource">
2350         <paramref name="source" /> 中的元素的类型。</typeparam>
2351       <typeparam name="TKey">
2352         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
2353       <typeparam name="TElement">
2354         <paramref name="elementSelector" /> 返回的值的类型。</typeparam>
2355       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2356       <exception cref="T:System.ArgumentNullException">
2357         <paramref name="source" /> 或 <paramref name="keySelector" /> 或 <paramref name="elementSelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2358       <exception cref="T:System.AggregateException">
2359         <paramref name="keySelector" /> 生成一个为 null 引用的键(在 Visual Basic 中为 Nothing)。- 或 - <paramref name="keySelector" /> 为两个元素产生了重复键。- 或 - 在查询的评估过程中出现了一个或多个异常。</exception>
2360     </member>
2361     <member name="M:System.Linq.ParallelEnumerable.ToList``1(System.Linq.ParallelQuery{``0})">
2362       <summary>从 <see cref="T:System.Linq.ParallelQuery`1" /> 创建一个 <see cref="T:System.Collections.Generic.List`1" />。</summary>
2363       <returns>一个包含输入序列中的元素的 <see cref="T:System.Collections.Generic.List`1" />。</returns>
2364       <param name="source">据其创建 <see cref="T:System.Collections.Generic.List`1" /> 的序列。</param>
2365       <typeparam name="TSource">
2366         <paramref name="source" /> 中的元素的类型。</typeparam>
2367       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2368       <exception cref="T:System.ArgumentNullException">
2369         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2370       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2371     </member>
2372     <member name="M:System.Linq.ParallelEnumerable.ToLookup``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1})">
2373       <summary>根据指定的键选择器函数,从 <see cref="T:System.Linq.ParallelQuery`1" /> 创建一个 <see cref="T:System.Linq.ILookup`2" />。</summary>
2374       <returns>一个包含键和值的 <see cref="T:System.Linq.ILookup`2" />。</returns>
2375       <param name="source">据其创建 <see cref="T:System.Linq.ILookup`2" /> 的序列。</param>
2376       <param name="keySelector">用于从每个元素中提取键的函数。</param>
2377       <typeparam name="TSource">
2378         <paramref name="source" /> 中的元素的类型。</typeparam>
2379       <typeparam name="TKey">
2380         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
2381       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2382       <exception cref="T:System.ArgumentNullException">
2383         <paramref name="source" /> 或 <paramref name="keySelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2384       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2385     </member>
2386     <member name="M:System.Linq.ParallelEnumerable.ToLookup``2(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
2387       <summary>根据指定的键选择器函数和键比较器,从 <see cref="T:System.Linq.ParallelQuery`1" /> 创建一个 <see cref="T:System.Linq.ILookup`2" />。</summary>
2388       <returns>一个包含键和值的 <see cref="T:System.Linq.ILookup`2" />。</returns>
2389       <param name="source">据其创建 <see cref="T:System.Linq.ILookup`2" /> 的序列。</param>
2390       <param name="keySelector">用于从每个元素中提取键的函数。</param>
2391       <param name="comparer">一个用于比较键的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
2392       <typeparam name="TSource">
2393         <paramref name="source" /> 中的元素的类型。</typeparam>
2394       <typeparam name="TKey">
2395         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
2396       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2397       <exception cref="T:System.ArgumentNullException">
2398         <paramref name="source" /> 或 <paramref name="keySelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2399       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2400     </member>
2401     <member name="M:System.Linq.ParallelEnumerable.ToLookup``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2})">
2402       <summary>根据指定的键选择器和元素选择器函数,从 <see cref="T:System.Linq.ParallelQuery`1" /> 创建一个 <see cref="T:System.Linq.ILookup`2" />。</summary>
2403       <returns>一个 <see cref="T:System.Linq.ILookup`2" />,包含从输入序列中选择的类型为 <paramref name="TElement" /> 的值。</returns>
2404       <param name="source">据其创建 <see cref="T:System.Linq.ILookup`2" /> 的序列。</param>
2405       <param name="keySelector">用于从每个元素中提取键的函数。</param>
2406       <param name="elementSelector">用于从每个元素产生结果元素值的转换函数。</param>
2407       <typeparam name="TSource">
2408         <paramref name="source" /> 中的元素的类型。</typeparam>
2409       <typeparam name="TKey">
2410         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
2411       <typeparam name="TElement">
2412         <paramref name="elementSelector" /> 返回的值的类型。</typeparam>
2413       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2414       <exception cref="T:System.ArgumentNullException">
2415         <paramref name="source" /> 或 <paramref name="keySelector" /> 或 <paramref name="elementSelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2416       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2417     </member>
2418     <member name="M:System.Linq.ParallelEnumerable.ToLookup``3(System.Linq.ParallelQuery{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">
2419       <summary>根据指定的键选择器函数、比较器和元素选择器函数从 <see cref="T:System.Linq.ParallelQuery`1" /> 创建一个 <see cref="T:System.Linq.ILookup`2" />。</summary>
2420       <returns>一个 Lookup&lt;(Of &lt;(TKey, TElement&gt;)&gt;),其中包含从输入序列中选择的 TElement 类型的值。</returns>
2421       <param name="source">据其创建 <see cref="T:System.Linq.ILookup`2" /> 的序列。</param>
2422       <param name="keySelector">用于从每个元素中提取键的函数。</param>
2423       <param name="elementSelector">用于从每个元素产生结果元素值的转换函数。</param>
2424       <param name="comparer">一个用于比较键的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
2425       <typeparam name="TSource">
2426         <paramref name="source" /> 中的元素的类型。</typeparam>
2427       <typeparam name="TKey">
2428         <paramref name="keySelector" /> 返回的键的类型。</typeparam>
2429       <typeparam name="TElement">
2430         <paramref name="elementSelector" /> 返回的值的类型。</typeparam>
2431       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2432       <exception cref="T:System.ArgumentNullException">
2433         <paramref name="source" /> 或 <paramref name="keySelector" /> 或 <paramref name="elementSelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2434       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2435     </member>
2436     <member name="M:System.Linq.ParallelEnumerable.Union``1(System.Linq.ParallelQuery{``0},System.Collections.Generic.IEnumerable{``0})">
2437       <summary>切勿调用此 Union 重载。此方法已标记为过时,调用此方法时总是会引发 <see cref="T:System.NotSupportedException" />。</summary>
2438       <returns>此重载总是会引发 <see cref="T:System.NotSupportedException" />。</returns>
2439       <param name="first">未使用此参数。</param>
2440       <param name="second">未使用此参数。</param>
2441       <typeparam name="TSource">未使用此类型参数。</typeparam>
2442       <exception cref="T:System.NotSupportedException">调用此方法时发生的异常。</exception>
2443       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2444       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2445     </member>
2446     <member name="M:System.Linq.ParallelEnumerable.Union``1(System.Linq.ParallelQuery{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
2447       <summary>切勿调用此 Union 重载。此方法已标记为过时,调用此方法时总是会引发 <see cref="T:System.NotSupportedException" />。</summary>
2448       <returns>此重载总是会引发 <see cref="T:System.NotSupportedException" />。</returns>
2449       <param name="first">未使用此参数。</param>
2450       <param name="second">未使用此参数。</param>
2451       <param name="comparer">未使用此参数。</param>
2452       <typeparam name="TSource">未使用此类型参数。</typeparam>
2453       <exception cref="T:System.NotSupportedException">调用此方法时发生的异常。</exception>
2454       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2455       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2456     </member>
2457     <member name="M:System.Linq.ParallelEnumerable.Union``1(System.Linq.ParallelQuery{``0},System.Linq.ParallelQuery{``0})">
2458       <summary>通过使用默认的相等比较器,生成两个并行序列的并集。</summary>
2459       <returns>一个序列,其中包含两个输入序列中的非重复元素。</returns>
2460       <param name="first">一个序列,其中的非重复元素构成并集的第一部分。</param>
2461       <param name="second">一个序列,其中的非重复元素构成并集的第二部分。</param>
2462       <typeparam name="TSource">输入序列中的元素的类型。</typeparam>
2463       <exception cref="T:System.ArgumentNullException">
2464         <paramref name="first" /> 或 <paramref name="second" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2465       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2466       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2467     </member>
2468     <member name="M:System.Linq.ParallelEnumerable.Union``1(System.Linq.ParallelQuery{``0},System.Linq.ParallelQuery{``0},System.Collections.Generic.IEqualityComparer{``0})">
2469       <summary>通过使用指定的 IEqualityComparer{T} 生成两个并行序列的并集。</summary>
2470       <returns>一个序列,其中包含两个输入序列中的非重复元素。</returns>
2471       <param name="first">一个序列,其中的非重复元素构成并集的第一部分。</param>
2472       <param name="second">一个序列,其中的非重复元素构成并集的第二部分。</param>
2473       <param name="comparer">用于比较值的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
2474       <typeparam name="TSource">输入序列中的元素的类型。</typeparam>
2475       <exception cref="T:System.ArgumentNullException">
2476         <paramref name="first" /> 或 <paramref name="second" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2477       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2478       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2479     </member>
2480     <member name="M:System.Linq.ParallelEnumerable.Where``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Boolean})">
2481       <summary>基于谓词并行筛选值序列。</summary>
2482       <returns>一个序列,其中包含输入序列中满足条件的元素。</returns>
2483       <param name="source">要筛选的序列。</param>
2484       <param name="predicate">用于测试每个元素是否满足条件的函数。</param>
2485       <typeparam name="TSource">源的元素的类型。</typeparam>
2486       <exception cref="T:System.ArgumentNullException">
2487         <paramref name="source" /> 或 <paramref name="predicate" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2488       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2489       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2490     </member>
2491     <member name="M:System.Linq.ParallelEnumerable.Where``1(System.Linq.ParallelQuery{``0},System.Func{``0,System.Int32,System.Boolean})">
2492       <summary>基于谓词并行筛选值序列。将在谓词函数的逻辑中使用每个元素的索引。</summary>
2493       <returns>一个序列,其中包含输入序列中满足条件的元素。</returns>
2494       <param name="source">要筛选的序列。</param>
2495       <param name="predicate">用于测试每个元素是否满足条件的函数。</param>
2496       <typeparam name="TSource">源的元素的类型。</typeparam>
2497       <exception cref="T:System.ArgumentNullException">
2498         <paramref name="source" /> 或 <paramref name="predicate" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2499       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2500       <exception cref="T:System.OverflowException">超过 <see cref="F:System.Int32.MaxValue" /> 个元素都是用该查询枚举。</exception>
2501       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2502     </member>
2503     <member name="M:System.Linq.ParallelEnumerable.WithCancellation``1(System.Linq.ParallelQuery{``0},System.Threading.CancellationToken)">
2504       <summary>设置要与查询关联的 <see cref="T:System.Threading.CancellationToken" />。</summary>
2505       <returns>表示与源相同的查询的 ParallelQuery,但带有已注册的取消标记。</returns>
2506       <param name="source">要对其设置选项的 ParallelQuery。</param>
2507       <param name="cancellationToken">取消标记。</param>
2508       <typeparam name="TSource">
2509         <paramref name="source" /> 中的元素的类型。</typeparam>
2510       <exception cref="T:System.ObjectDisposedException">与 <paramref name="cancellationToken" /> 关联的 <see cref="T:System.Threading.CancellationTokenSource" /> 已被释放。</exception>
2511       <exception cref="T:System.ArgumentNullException">
2512         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2513       <exception cref="T:System.InvalidOperationException">在该查询中,多次使用 <paramref name="WithCancellation" />。</exception>
2514     </member>
2515     <member name="M:System.Linq.ParallelEnumerable.WithDegreeOfParallelism``1(System.Linq.ParallelQuery{``0},System.Int32)">
2516       <summary>设置要在查询中使用的并行度。并行度是将用于处理查询的同时执行的任务的最大数目。</summary>
2517       <returns>表示与源相同的查询的 ParallelQuery,其中设置了对并行度的限制。</returns>
2518       <param name="source">要对其设置并行度限制的 ParallelQuery。</param>
2519       <param name="degreeOfParallelism">查询的并行度。默认值是 Math.Min (<see cref="P:System.Environment.ProcessorCount" />, MAX_SUPPORTED_DOP) 其中MAX_SUPPORTED_DOP为 512。</param>
2520       <typeparam name="TSource">
2521         <paramref name="source" /> 中的元素的类型。</typeparam>
2522       <exception cref="T:System.ArgumentNullException">
2523         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2524       <exception cref="T:System.ArgumentOutOfRangeException">
2525         <paramref name="degreeOfParallelism" /> 小于 1 或大于 511。</exception>
2526       <exception cref="T:System.InvalidOperationException">WithDegreeOfParallelism 在查询中多次使用。</exception>
2527     </member>
2528     <member name="M:System.Linq.ParallelEnumerable.WithExecutionMode``1(System.Linq.ParallelQuery{``0},System.Linq.ParallelExecutionMode)">
2529       <summary>设置查询的执行模式。</summary>
2530       <returns>表示与源相同的查询的 ParallelQuery,但带有已注册的执行模式。</returns>
2531       <param name="source">要对其设置选项的 ParallelQuery。</param>
2532       <param name="executionMode">执行查询使用的模式。</param>
2533       <typeparam name="TSource">
2534         <paramref name="source" /> 中的元素的类型。</typeparam>
2535       <exception cref="T:System.ArgumentNullException">
2536         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2537       <exception cref="T:System.ArgumentException">
2538         <paramref name="executionMode" /> 不是有效的 <see cref="T:System.Linq.ParallelExecutionMode" /> 值。</exception>
2539       <exception cref="T:System.InvalidOperationException">WithExecutionMode 在查询中多次使用。</exception>
2540     </member>
2541     <member name="M:System.Linq.ParallelEnumerable.WithMergeOptions``1(System.Linq.ParallelQuery{``0},System.Linq.ParallelMergeOptions)">
2542       <summary>设置此查询的合并选项,它指定查询对输出进行缓冲处理的方式。</summary>
2543       <returns>表示与源相同的查询的 ParallelQuery,但带有已注册的合并选项。</returns>
2544       <param name="source">要对其设置选项的 ParallelQuery。</param>
2545       <param name="mergeOptions">要为此查询设置的合并选项。</param>
2546       <typeparam name="TSource">
2547         <paramref name="source" /> 中的元素的类型。</typeparam>
2548       <exception cref="T:System.ArgumentNullException">
2549         <paramref name="source" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2550       <exception cref="T:System.ArgumentException">
2551         <paramref name="mergeOptions" /> 不是有效的 <see cref="T:System.Linq.ParallelMergeOptions" /> 值。</exception>
2552       <exception cref="T:System.InvalidOperationException">在该查询中,多次使用 <paramref name="WithMergeOptions" />。</exception>
2553     </member>
2554     <member name="M:System.Linq.ParallelEnumerable.Zip``3(System.Linq.ParallelQuery{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1,``2})">
2555       <summary>切勿调用此 Zip 重载。此方法已标记为过时,调用此方法时总是会引发 <see cref="T:System.NotSupportedException" />。</summary>
2556       <returns>此重载总是会引发 <see cref="T:System.NotSupportedException" />。</returns>
2557       <param name="first">未使用此参数。</param>
2558       <param name="second">未使用此参数。</param>
2559       <param name="resultSelector">未使用此参数。</param>
2560       <typeparam name="TFirst">未使用此类型参数。</typeparam>
2561       <typeparam name="TSecond">未使用此类型参数。</typeparam>
2562       <typeparam name="TResult">未使用此类型参数。</typeparam>
2563       <exception cref="T:System.NotSupportedException">调用此方法时发生的异常。</exception>
2564     </member>
2565     <member name="M:System.Linq.ParallelEnumerable.Zip``3(System.Linq.ParallelQuery{``0},System.Linq.ParallelQuery{``1},System.Func{``0,``1,``2})">
2566       <summary>通过使用指定的谓词函数并行合并两个序列。</summary>
2567       <returns>一个序列,其中包含通过对两个序列执行 <paramref name="resultSelector" /> 配对获得的 <paramref name="TResult" /> 类型的元素。如果序列长度不相等,这将截断为较短序列的长度。</returns>
2568       <param name="first">要压缩的第一个序列。</param>
2569       <param name="second">要压缩的第二个序列。</param>
2570       <param name="resultSelector">用于从两个匹配元素创建结果元素的函数。</param>
2571       <typeparam name="TFirst">第一个序列中的元素的类型。</typeparam>
2572       <typeparam name="TSecond">第二个序列中的元素的类型。</typeparam>
2573       <typeparam name="TResult">返回元素的类型。</typeparam>
2574       <exception cref="T:System.ArgumentNullException">
2575         <paramref name="first" /> 或 <paramref name="second" /> 或 <paramref name="resultSelector" /> 是 null 引用(在 Visual Basic 中为 Nothing)。</exception>
2576       <exception cref="T:System.OperationCanceledException">查询已使用通过 <paramref name="WithCancellation" /> 传入的标记取消。</exception>
2577       <exception cref="T:System.AggregateException">在查询的评估过程中出现了一个或多个异常。</exception>
2578     </member>
2579     <member name="T:System.Linq.ParallelExecutionMode">
2580       <summary>查询执行模式是一种提示,它指定系统在并行化查询时应如何使性能达到平衡。</summary>
2581     </member>
2582     <member name="F:System.Linq.ParallelExecutionMode.Default">
2583       <summary>此设置为默认设置。PLINQ 将检查查询的结构,仅在可能带来加速时才对查询进行并行化。如果查询结构指示不可能获得加速,则 PLINQ 会将查询当作普通的 LINQ to Objects 查询来执行。</summary>
2584     </member>
2585     <member name="F:System.Linq.ParallelExecutionMode.ForceParallelism">
2586       <summary>并行化整个查询,即使要使用系统开销大的算法。如果认为并行执行查询将带来加速,则使用此标志,但处于默认模式的 PLINQ 将按顺序执行它。</summary>
2587     </member>
2588     <member name="T:System.Linq.ParallelMergeOptions">
2589       <summary>指定查询中要使用的输出合并的首选类型。换言之,它指示 PLINQ 如何将多个分区的结果合并回单个结果序列。这仅是一个提示,系统在并行处理所有查询时可能不会考虑这一点。</summary>
2590     </member>
2591     <member name="F:System.Linq.ParallelMergeOptions.AutoBuffered">
2592       <summary>利用系统选定大小的输出缓冲区进行合并。在向查询使用者提供结果之前,会先将结果累计到输出缓冲区中。</summary>
2593     </member>
2594     <member name="F:System.Linq.ParallelMergeOptions.Default">
2595       <summary>使用默认合并类型,即 AutoBuffered。</summary>
2596     </member>
2597     <member name="F:System.Linq.ParallelMergeOptions.FullyBuffered">
2598       <summary>利用整个输出缓冲区进行合并。在向查询使用者提供任何结果之前,系统会先累计所有结果。</summary>
2599     </member>
2600     <member name="F:System.Linq.ParallelMergeOptions.NotBuffered">
2601       <summary>不利用输出缓冲区进行合并。一旦计算出结果元素,就向查询使用者提供这些元素。</summary>
2602     </member>
2603     <member name="T:System.Linq.ParallelQuery">
2604       <summary>表示并行序列。</summary>
2605     </member>
2606     <member name="M:System.Linq.ParallelQuery.System#Collections#IEnumerable#GetEnumerator">
2607       <summary>返回循环访问序列的枚举数。</summary>
2608       <returns>循环访问序列的枚举数。</returns>
2609     </member>
2610     <member name="T:System.Linq.ParallelQuery`1">
2611       <summary>表示并行序列。</summary>
2612       <typeparam name="TSource">源序列中的元素的类型。</typeparam>
2613     </member>
2614     <member name="M:System.Linq.ParallelQuery`1.GetEnumerator">
2615       <summary>返回循环访问序列的枚举数。</summary>
2616       <returns>循环访问序列的枚举数。</returns>
2617     </member>
2618   </members>
2619 </doc>