[Tizen] Add BuildTools 2.1.0-rc1-02804-05
[platform/upstream/coreclr.git] / Tools / dotnetcli / sdk / NuGetFallbackFolder / system.linq / 4.3.0 / ref / netstandard1.6 / ja / System.Linq.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Linq</name>
5   </assembly>
6   <members>
7     <member name="T:System.Linq.Enumerable">
8       <summary>
9         <see cref="T:System.Collections.Generic.IEnumerable`1" /> を実装するオブジェクトをクエリするための一連の static (Visual Basic では Shared) メソッドを提供します。</summary>
10     </member>
11     <member name="M:System.Linq.Enumerable.Aggregate``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``0,``0})">
12       <summary>シーケンスにアキュムレータ関数を適用します。</summary>
13       <returns>最終的なアキュムレータ値。</returns>
14       <param name="source">集計対象の <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
15       <param name="func">各要素に対して呼び出すアキュムレータ関数。</param>
16       <typeparam name="TSource">
17         <paramref name="source" /> の要素の型。</typeparam>
18       <exception cref="T:System.ArgumentNullException">
19         <paramref name="source" /> または <paramref name="func" /> が null です。</exception>
20       <exception cref="T:System.InvalidOperationException">
21         <paramref name="source" /> に要素が含まれていません。</exception>
22     </member>
23     <member name="M:System.Linq.Enumerable.Aggregate``2(System.Collections.Generic.IEnumerable{``0},``1,System.Func{``1,``0,``1})">
24       <summary>シーケンスにアキュムレータ関数を適用します。指定されたシード値が最初のアキュムレータ値として使用されます。</summary>
25       <returns>最終的なアキュムレータ値。</returns>
26       <param name="source">集計対象の <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
27       <param name="seed">最初のアキュムレータ値。</param>
28       <param name="func">各要素に対して呼び出すアキュムレータ関数。</param>
29       <typeparam name="TSource">
30         <paramref name="source" /> の要素の型。</typeparam>
31       <typeparam name="TAccumulate">アキュムレータ値の型。</typeparam>
32       <exception cref="T:System.ArgumentNullException">
33         <paramref name="source" /> または <paramref name="func" /> が null です。</exception>
34     </member>
35     <member name="M:System.Linq.Enumerable.Aggregate``3(System.Collections.Generic.IEnumerable{``0},``1,System.Func{``1,``0,``1},System.Func{``1,``2})">
36       <summary>シーケンスにアキュムレータ関数を適用します。指定したシード値は最初のアキュムレータ値として使用され、指定した関数は結果値の選択に使用されます。</summary>
37       <returns>変換された最終的なアキュムレータ値。</returns>
38       <param name="source">集計対象の <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
39       <param name="seed">最初のアキュムレータ値。</param>
40       <param name="func">各要素に対して呼び出すアキュムレータ関数。</param>
41       <param name="resultSelector">最終的なアキュムレータ値を結果値に変換する関数。</param>
42       <typeparam name="TSource">
43         <paramref name="source" /> の要素の型。</typeparam>
44       <typeparam name="TAccumulate">アキュムレータ値の型。</typeparam>
45       <typeparam name="TResult">結果の値の型。</typeparam>
46       <exception cref="T:System.ArgumentNullException">
47         <paramref name="source" />、<paramref name="func" />、または <paramref name="resultSelector" /> が null です。</exception>
48     </member>
49     <member name="M:System.Linq.Enumerable.All``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})">
50       <summary>シーケンスのすべての要素が条件を満たしているかどうかを判断します。</summary>
51       <returns>指定された述語でソース シーケンスのすべての要素がテストに合格する場合は true。それ以外の場合は false。</returns>
52       <param name="source">述語を適用する要素を格納している <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
53       <param name="predicate">各要素が条件を満たしているかどうかをテストする関数。</param>
54       <typeparam name="TSource">
55         <paramref name="source" /> の要素の型。</typeparam>
56       <exception cref="T:System.ArgumentNullException">
57         <paramref name="source" /> または <paramref name="predicate" /> が null です。</exception>
58     </member>
59     <member name="M:System.Linq.Enumerable.Any``1(System.Collections.Generic.IEnumerable{``0})">
60       <summary>シーケンスに要素が含まれているかどうかを判断します。</summary>
61       <returns>ソース シーケンスに要素が含まれている場合は true。それ以外の場合は false。</returns>
62       <param name="source">空かどうかを確認する <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
63       <typeparam name="TSource">
64         <paramref name="source" /> の要素の型。</typeparam>
65       <exception cref="T:System.ArgumentNullException">
66         <paramref name="source" /> は null なので、</exception>
67     </member>
68     <member name="M:System.Linq.Enumerable.Any``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})">
69       <summary>シーケンスの任意の要素が条件を満たしているかどうかを判断します。</summary>
70       <returns>指定された述語でソース シーケンスの要素がテストに合格する場合は true。それ以外の場合は false。</returns>
71       <param name="source">述語を適用する要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
72       <param name="predicate">各要素が条件を満たしているかどうかをテストする関数。</param>
73       <typeparam name="TSource">
74         <paramref name="source" /> の要素の型。</typeparam>
75       <exception cref="T:System.ArgumentNullException">
76         <paramref name="source" /> または <paramref name="predicate" /> が null です。</exception>
77     </member>
78     <member name="M:System.Linq.Enumerable.AsEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
79       <summary>
80         <see cref="T:System.Collections.Generic.IEnumerable`1" /> として型指定された入力を返します。</summary>
81       <returns>
82         <see cref="T:System.Collections.Generic.IEnumerable`1" /> として型指定された入力シーケンス。</returns>
83       <param name="source">
84         <see cref="T:System.Collections.Generic.IEnumerable`1" /> として型指定するシーケンス。</param>
85       <typeparam name="TSource">
86         <paramref name="source" /> の要素の型。</typeparam>
87     </member>
88     <member name="M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Decimal})">
89       <summary>
90         <see cref="T:System.Decimal" /> 値のシーケンスの平均値を計算します。</summary>
91       <returns>値のシーケンスの平均値。</returns>
92       <param name="source">平均値計算の対象となる <see cref="T:System.Decimal" /> 値のシーケンス。</param>
93       <exception cref="T:System.ArgumentNullException">
94         <paramref name="source" /> は null なので、</exception>
95       <exception cref="T:System.InvalidOperationException">
96         <paramref name="source" /> に要素が含まれていません。</exception>
97     </member>
98     <member name="M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Double})">
99       <summary>
100         <see cref="T:System.Double" /> 値のシーケンスの平均値を計算します。</summary>
101       <returns>値のシーケンスの平均値。</returns>
102       <param name="source">平均値計算の対象となる <see cref="T:System.Double" /> 値のシーケンス。</param>
103       <exception cref="T:System.ArgumentNullException">
104         <paramref name="source" /> は null なので、</exception>
105       <exception cref="T:System.InvalidOperationException">
106         <paramref name="source" /> に要素が含まれていません。</exception>
107     </member>
108     <member name="M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Int32})">
109       <summary>
110         <see cref="T:System.Int32" /> 値のシーケンスの平均値を計算します。</summary>
111       <returns>値のシーケンスの平均値。</returns>
112       <param name="source">平均値計算の対象となる <see cref="T:System.Int32" /> 値のシーケンス。</param>
113       <exception cref="T:System.ArgumentNullException">
114         <paramref name="source" /> は null なので、</exception>
115       <exception cref="T:System.InvalidOperationException">
116         <paramref name="source" /> に要素が含まれていません。</exception>
117     </member>
118     <member name="M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Int64})">
119       <summary>
120         <see cref="T:System.Int64" /> 値のシーケンスの平均値を計算します。</summary>
121       <returns>値のシーケンスの平均値。</returns>
122       <param name="source">平均値計算の対象となる <see cref="T:System.Int64" /> 値のシーケンス。</param>
123       <exception cref="T:System.ArgumentNullException">
124         <paramref name="source" /> は null なので、</exception>
125       <exception cref="T:System.InvalidOperationException">
126         <paramref name="source" /> に要素が含まれていません。</exception>
127     </member>
128     <member name="M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">
129       <summary>null 許容の <see cref="T:System.Decimal" /> 値のシーケンスの平均値を計算します。</summary>
130       <returns>値のシーケンスの平均値。ソース シーケンスが空か null 値のみを含む場合は null。</returns>
131       <param name="source">平均値計算の対象となる null 許容の <see cref="T:System.Decimal" /> 値のシーケンス。</param>
132       <exception cref="T:System.ArgumentNullException">
133         <paramref name="source" /> は null なので、</exception>
134       <exception cref="T:System.OverflowException">シーケンス内の要素の合計が <see cref="F:System.Decimal.MaxValue" /> を超えています。</exception>
135     </member>
136     <member name="M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">
137       <summary>null 許容の <see cref="T:System.Double" /> 値のシーケンスの平均値を計算します。</summary>
138       <returns>値のシーケンスの平均値。ソース シーケンスが空か null 値のみを含む場合は null。</returns>
139       <param name="source">平均値計算の対象となる null 許容の <see cref="T:System.Double" /> 値のシーケンス。</param>
140       <exception cref="T:System.ArgumentNullException">
141         <paramref name="source" /> は null なので、</exception>
142     </member>
143     <member name="M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
144       <summary>null 許容の <see cref="T:System.Int32" /> 値のシーケンスの平均値を計算します。</summary>
145       <returns>値のシーケンスの平均値。ソース シーケンスが空か null 値のみを含む場合は null。</returns>
146       <param name="source">平均値計算の対象となる null 許容の <see cref="T:System.Int32" />  値のシーケンス。</param>
147       <exception cref="T:System.ArgumentNullException">
148         <paramref name="source" /> は null なので、</exception>
149       <exception cref="T:System.OverflowException">シーケンス内の要素の合計が <see cref="F:System.Int64.MaxValue" /> を超えています。</exception>
150     </member>
151     <member name="M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">
152       <summary>null 許容の <see cref="T:System.Int64" /> 値のシーケンスの平均値を計算します。</summary>
153       <returns>値のシーケンスの平均値。ソース シーケンスが空か null 値のみを含む場合は null。</returns>
154       <param name="source">平均値計算の対象となる null 許容の <see cref="T:System.Int64" /> 値のシーケンス。</param>
155       <exception cref="T:System.ArgumentNullException">
156         <paramref name="source" /> は null なので、</exception>
157       <exception cref="T:System.OverflowException">シーケンス内の要素の合計が <see cref="F:System.Int64.MaxValue" /> を超えています。</exception>
158     </member>
159     <member name="M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">
160       <summary>null 許容の <see cref="T:System.Single" /> 値のシーケンスの平均値を計算します。</summary>
161       <returns>値のシーケンスの平均値。ソース シーケンスが空か null 値のみを含む場合は null。</returns>
162       <param name="source">平均値計算の対象となる null 許容の <see cref="T:System.Single" /> 値のシーケンス。</param>
163       <exception cref="T:System.ArgumentNullException">
164         <paramref name="source" /> は null なので、</exception>
165     </member>
166     <member name="M:System.Linq.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Single})">
167       <summary>
168         <see cref="T:System.Single" /> 値のシーケンスの平均値を計算します。</summary>
169       <returns>値のシーケンスの平均値。</returns>
170       <param name="source">平均値計算の対象となる <see cref="T:System.Single" /> 値のシーケンス。</param>
171       <exception cref="T:System.ArgumentNullException">
172         <paramref name="source" /> は null なので、</exception>
173       <exception cref="T:System.InvalidOperationException">
174         <paramref name="source" /> に要素が含まれていません。</exception>
175     </member>
176     <member name="M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Decimal})">
177       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する <see cref="T:System.Decimal" /> 値のシーケンスの平均値を計算します。</summary>
178       <returns>値のシーケンスの平均値。</returns>
179       <param name="source">平均値の計算に使用される値のシーケンス。</param>
180       <param name="selector">各要素に適用する変換関数。</param>
181       <typeparam name="TSource">
182         <paramref name="source" /> の要素の型。</typeparam>
183       <exception cref="T:System.ArgumentNullException">
184         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
185       <exception cref="T:System.InvalidOperationException">
186         <paramref name="source" /> に要素が含まれていません。</exception>
187       <exception cref="T:System.OverflowException">シーケンス内の要素の合計が <see cref="F:System.Decimal.MaxValue" /> を超えています。</exception>
188     </member>
189     <member name="M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Double})">
190       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する <see cref="T:System.Double" /> 値のシーケンスの平均値を計算します。</summary>
191       <returns>値のシーケンスの平均値。</returns>
192       <param name="source">平均値計算の対象となる値のシーケンス。</param>
193       <param name="selector">各要素に適用する変換関数。</param>
194       <typeparam name="TSource">
195         <paramref name="source" /> の要素の型。</typeparam>
196       <exception cref="T:System.ArgumentNullException">
197         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
198       <exception cref="T:System.InvalidOperationException">
199         <paramref name="source" /> に要素が含まれていません。</exception>
200     </member>
201     <member name="M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32})">
202       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する <see cref="T:System.Int32" /> 値のシーケンスの平均値を計算します。</summary>
203       <returns>値のシーケンスの平均値。</returns>
204       <param name="source">平均値計算の対象となる値のシーケンス。</param>
205       <param name="selector">各要素に適用する変換関数。</param>
206       <typeparam name="TSource">
207         <paramref name="source" /> の要素の型。</typeparam>
208       <exception cref="T:System.ArgumentNullException">
209         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
210       <exception cref="T:System.InvalidOperationException">
211         <paramref name="source" /> に要素が含まれていません。</exception>
212       <exception cref="T:System.OverflowException">シーケンス内の要素の合計が <see cref="F:System.Int64.MaxValue" /> を超えています。</exception>
213     </member>
214     <member name="M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int64})">
215       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する <see cref="T:System.Int64" /> 値のシーケンスの平均値を計算します。</summary>
216       <returns>値のシーケンスの平均値。</returns>
217       <param name="source">平均値計算の対象となる値のシーケンス。</param>
218       <param name="selector">各要素に適用する変換関数。</param>
219       <typeparam name="TSource">ソースの要素の型。</typeparam>
220       <exception cref="T:System.ArgumentNullException">
221         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
222       <exception cref="T:System.InvalidOperationException">
223         <paramref name="source" /> に要素が含まれていません。</exception>
224       <exception cref="T:System.OverflowException">シーケンス内の要素の合計が <see cref="F:System.Int64.MaxValue" /> を超えています。</exception>
225     </member>
226     <member name="M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Decimal}})">
227       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する null 許容の <see cref="T:System.Decimal" /> 値のシーケンスの平均値を計算します。</summary>
228       <returns>値のシーケンスの平均値。ソース シーケンスが空か null 値のみを含む場合は null。</returns>
229       <param name="source">平均値計算の対象となる値のシーケンス。</param>
230       <param name="selector">各要素に適用する変換関数。</param>
231       <typeparam name="TSource">
232         <paramref name="source" /> の要素の型。</typeparam>
233       <exception cref="T:System.ArgumentNullException">
234         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
235       <exception cref="T:System.OverflowException">シーケンス内の要素の合計が <see cref="F:System.Decimal.MaxValue" /> を超えています。</exception>
236     </member>
237     <member name="M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Double}})">
238       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する null 許容の <see cref="T:System.Double" /> 値のシーケンスの平均値を計算します。</summary>
239       <returns>値のシーケンスの平均値。ソース シーケンスが空か null 値のみを含む場合は null。</returns>
240       <param name="source">平均値計算の対象となる値のシーケンス。</param>
241       <param name="selector">各要素に適用する変換関数。</param>
242       <typeparam name="TSource">
243         <paramref name="source" /> の要素の型。</typeparam>
244       <exception cref="T:System.ArgumentNullException">
245         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
246     </member>
247     <member name="M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int32}})">
248       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する null 許容の <see cref="T:System.Int32" /> 値のシーケンスの平均値を計算します。</summary>
249       <returns>値のシーケンスの平均値。ソース シーケンスが空か null 値のみを含む場合は null。</returns>
250       <param name="source">平均値計算の対象となる値のシーケンス。</param>
251       <param name="selector">各要素に適用する変換関数。</param>
252       <typeparam name="TSource">
253         <paramref name="source" /> の要素の型。</typeparam>
254       <exception cref="T:System.ArgumentNullException">
255         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
256       <exception cref="T:System.OverflowException">シーケンス内の要素の合計が <see cref="F:System.Int64.MaxValue" /> を超えています。</exception>
257     </member>
258     <member name="M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int64}})">
259       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する null 許容の <see cref="T:System.Int64" /> 値のシーケンスの平均値を計算します。</summary>
260       <returns>値のシーケンスの平均値。ソース シーケンスが空か null 値のみを含む場合は null。</returns>
261       <param name="source">平均値計算の対象となる値のシーケンス。</param>
262       <param name="selector">各要素に適用する変換関数。</param>
263       <typeparam name="TSource">
264         <paramref name="source" /> の要素の型。</typeparam>
265     </member>
266     <member name="M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Single}})">
267       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する null 許容の <see cref="T:System.Single" /> 値のシーケンスの平均値を計算します。</summary>
268       <returns>値のシーケンスの平均値。ソース シーケンスが空か null 値のみを含む場合は null。</returns>
269       <param name="source">平均値計算の対象となる値のシーケンス。</param>
270       <param name="selector">各要素に適用する変換関数。</param>
271       <typeparam name="TSource">
272         <paramref name="source" /> の要素の型。</typeparam>
273       <exception cref="T:System.ArgumentNullException">
274         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
275     </member>
276     <member name="M:System.Linq.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Single})">
277       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する <see cref="T:System.Single" /> 値のシーケンスの平均値を計算します。</summary>
278       <returns>値のシーケンスの平均値。</returns>
279       <param name="source">平均値計算の対象となる値のシーケンス。</param>
280       <param name="selector">各要素に適用する変換関数。</param>
281       <typeparam name="TSource">
282         <paramref name="source" /> の要素の型。</typeparam>
283       <exception cref="T:System.ArgumentNullException">
284         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
285       <exception cref="T:System.InvalidOperationException">
286         <paramref name="source" /> に要素が含まれていません。</exception>
287     </member>
288     <member name="M:System.Linq.Enumerable.Cast``1(System.Collections.IEnumerable)">
289       <summary>
290         <see cref="T:System.Collections.IEnumerable" /> の要素を、指定した型にキャストします。</summary>
291       <returns>指定された型にキャストされたソース シーケンスの各要素を格納する <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
292       <param name="source">
293         <paramref name="TResult" /> 型にキャストされる要素が格納されている <see cref="T:System.Collections.IEnumerable" />。</param>
294       <typeparam name="TResult">
295         <paramref name="source" /> の要素のキャスト後の型。</typeparam>
296       <exception cref="T:System.ArgumentNullException">
297         <paramref name="source" /> は null なので、</exception>
298       <exception cref="T:System.InvalidCastException">シーケンスの要素を <paramref name="TResult" /> 型にキャストできません。</exception>
299     </member>
300     <member name="M:System.Linq.Enumerable.Concat``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
301       <summary>2 つのシーケンスを連結します。</summary>
302       <returns>2 つの入力シーケンスの連結された要素が格納されている <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
303       <param name="first">連結する最初のシーケンス。</param>
304       <param name="second">最初のシーケンスに連結するシーケンス。</param>
305       <typeparam name="TSource">入力シーケンスの要素の型。</typeparam>
306       <exception cref="T:System.ArgumentNullException">
307         <paramref name="first" /> または <paramref name="second" /> が null です。</exception>
308     </member>
309     <member name="M:System.Linq.Enumerable.Contains``1(System.Collections.Generic.IEnumerable{``0},``0)">
310       <summary>既定の等値比較子を使用して、指定した要素がシーケンスに含まれているかどうかを判断します。</summary>
311       <returns>指定した値を持つ要素がソース シーケンスに含まれている場合は true。それ以外は false。</returns>
312       <param name="source">値の検索対象となるシーケンス。</param>
313       <param name="value">シーケンス内で検索する値。</param>
314       <typeparam name="TSource">
315         <paramref name="source" /> の要素の型。</typeparam>
316       <exception cref="T:System.ArgumentNullException">
317         <paramref name="source" /> は null なので、</exception>
318     </member>
319     <member name="M:System.Linq.Enumerable.Contains``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
320       <summary>指定した <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> を使用して、指定した要素がシーケンスに含まれているかどうかを判断します。</summary>
321       <returns>指定した値を持つ要素がソース シーケンスに含まれている場合は true。それ以外は false。</returns>
322       <param name="source">値の検索対象となるシーケンス。</param>
323       <param name="value">シーケンス内で検索する値。</param>
324       <param name="comparer">値を比較する等値比較子。</param>
325       <typeparam name="TSource">
326         <paramref name="source" /> の要素の型。</typeparam>
327       <exception cref="T:System.ArgumentNullException">
328         <paramref name="source" /> は null なので、</exception>
329     </member>
330     <member name="M:System.Linq.Enumerable.Count``1(System.Collections.Generic.IEnumerable{``0})">
331       <summary>シーケンス内の要素数を返します。</summary>
332       <returns>入力シーケンス内の要素数。</returns>
333       <param name="source">カウントする要素が格納されているシーケンス。</param>
334       <typeparam name="TSource">
335         <paramref name="source" /> の要素の型。</typeparam>
336       <exception cref="T:System.ArgumentNullException">
337         <paramref name="source" /> は null なので、</exception>
338       <exception cref="T:System.OverflowException">
339         <paramref name="source" /> 内の要素数が <see cref="F:System.Int32.MaxValue" /> を超えています。</exception>
340     </member>
341     <member name="M:System.Linq.Enumerable.Count``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})">
342       <summary>条件を満たす、指定されたシーケンス内の要素の数を表す数値を返します。</summary>
343       <returns>述語関数の条件を満たす、シーケンス内の要素数を表す数値。</returns>
344       <param name="source">テストおよびカウントする要素が格納されているシーケンス。</param>
345       <param name="predicate">各要素が条件を満たしているかどうかをテストする関数。</param>
346       <typeparam name="TSource">
347         <paramref name="source" /> の要素の型。</typeparam>
348       <exception cref="T:System.ArgumentNullException">
349         <paramref name="source" /> または <paramref name="predicate" /> が null です。</exception>
350       <exception cref="T:System.OverflowException">
351         <paramref name="source" /> 内の要素数が <see cref="F:System.Int32.MaxValue" /> を超えています。</exception>
352     </member>
353     <member name="M:System.Linq.Enumerable.DefaultIfEmpty``1(System.Collections.Generic.IEnumerable{``0})">
354       <summary>指定したシーケンスの要素を返します。シーケンスが空の場合はシングルトン コレクションにある型パラメーターの既定値を返します。</summary>
355       <returns>
356         <paramref name="source" /> が空の場合、<paramref name="TSource" /> 型の既定値を格納する <see cref="T:System.Collections.Generic.IEnumerable`1" /> オブジェクト。それ以外の場合は <paramref name="source" />。</returns>
357       <param name="source">シーケンスが空の場合に、既定値を返すシーケンス。</param>
358       <typeparam name="TSource">
359         <paramref name="source" /> の要素の型。</typeparam>
360       <exception cref="T:System.ArgumentNullException">
361         <paramref name="source" /> は null なので、</exception>
362     </member>
363     <member name="M:System.Linq.Enumerable.DefaultIfEmpty``1(System.Collections.Generic.IEnumerable{``0},``0)">
364       <summary>指定されたシーケンスの要素を返します。シーケンスが空の場合はシングルトン コレクションにある型パラメーターの既定値を返します。</summary>
365       <returns>
366         <paramref name="source" /> が空の場合は <paramref name="defaultValue" /> が格納されている <see cref="T:System.Collections.Generic.IEnumerable`1" />。それ以外の場合は <paramref name="source" />。</returns>
367       <param name="source">シーケンスが空の場合に、指定された値を返すシーケンス。</param>
368       <param name="defaultValue">シーケンスが空の場合に返す値。</param>
369       <typeparam name="TSource">
370         <paramref name="source" /> の要素の型。</typeparam>
371     </member>
372     <member name="M:System.Linq.Enumerable.Distinct``1(System.Collections.Generic.IEnumerable{``0})">
373       <summary>既定の等値比較子を使用して値を比較することにより、シーケンスから一意の要素を返します。</summary>
374       <returns>ソース シーケンスの一意の要素を格納する <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
375       <param name="source">重複する要素を削除する対象となるシーケンス。</param>
376       <typeparam name="TSource">
377         <paramref name="source" /> の要素の型。</typeparam>
378       <exception cref="T:System.ArgumentNullException">
379         <paramref name="source" /> は null なので、</exception>
380     </member>
381     <member name="M:System.Linq.Enumerable.Distinct``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
382       <summary>指定された <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> を使用して値を比較することにより、シーケンスから一意の要素を返します。</summary>
383       <returns>ソース シーケンスの一意の要素を格納する <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
384       <param name="source">重複する要素を削除する対象となるシーケンス。</param>
385       <param name="comparer">値を比較する <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
386       <typeparam name="TSource">
387         <paramref name="source" /> の要素の型。</typeparam>
388       <exception cref="T:System.ArgumentNullException">
389         <paramref name="source" /> は null なので、</exception>
390     </member>
391     <member name="M:System.Linq.Enumerable.ElementAt``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
392       <summary>シーケンス内の指定されたインデックス位置にある要素を返します。</summary>
393       <returns>ソース シーケンス内の指定された位置にある要素。</returns>
394       <param name="source">返される要素が含まれる <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
395       <param name="index">取得する要素の、0 から始まるインデックス。</param>
396       <typeparam name="TSource">
397         <paramref name="source" /> の要素の型。</typeparam>
398       <exception cref="T:System.ArgumentNullException">
399         <paramref name="source" /> は null なので、</exception>
400       <exception cref="T:System.ArgumentOutOfRangeException">
401         <paramref name="index" /> が 0 未満か <paramref name="source" /> に含まれている要素数以上の値です。</exception>
402     </member>
403     <member name="M:System.Linq.Enumerable.ElementAtOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
404       <summary>シーケンス内の指定されたインデックス位置にある要素を返します。インデックスが範囲外の場合は既定値を返します。</summary>
405       <returns>インデックスがソース シーケンスの範囲外の場合は default (<paramref name="TSource" />)。それ以外の場合は、ソース シーケンスの指定した位置にある要素。</returns>
406       <param name="source">返される要素が含まれる <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
407       <param name="index">取得する要素の、0 から始まるインデックス。</param>
408       <typeparam name="TSource">
409         <paramref name="source" /> の要素の型。</typeparam>
410       <exception cref="T:System.ArgumentNullException">
411         <paramref name="source" /> は null なので、</exception>
412     </member>
413     <member name="M:System.Linq.Enumerable.Empty``1">
414       <summary>指定した型引数を持つ空の <see cref="T:System.Collections.Generic.IEnumerable`1" /> を返します。</summary>
415       <returns>型引数が <paramref name="TResult" /> である空の <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
416       <typeparam name="TResult">返されるジェネリック <see cref="T:System.Collections.Generic.IEnumerable`1" /> の型パラメーターに割り当てる型。</typeparam>
417     </member>
418     <member name="M:System.Linq.Enumerable.Except``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
419       <summary>既定の等値比較子を使用して値を比較することにより、2 つのシーケンスの差集合を生成します。</summary>
420       <returns>2 つのシーケンスの要素の差集合が格納されているシーケンス。</returns>
421       <param name="first">
422         <paramref name="second" /> には含まれていないが、返される要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
423       <param name="second">最初のシーケンスにも含まれ、返されたシーケンスからは削除される要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
424       <typeparam name="TSource">入力シーケンスの要素の型。</typeparam>
425       <exception cref="T:System.ArgumentNullException">
426         <paramref name="first" /> または <paramref name="second" /> が null です。</exception>
427     </member>
428     <member name="M:System.Linq.Enumerable.Except``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
429       <summary>指定された <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> を使用して値を比較することにより、2 つのシーケンスの差集合を生成します。</summary>
430       <returns>2 つのシーケンスの要素の差集合が格納されているシーケンス。</returns>
431       <param name="first">
432         <paramref name="second" /> には含まれていないが、返される要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
433       <param name="second">最初のシーケンスにも含まれ、返されたシーケンスからは削除される要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
434       <param name="comparer">値を比較する <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
435       <typeparam name="TSource">入力シーケンスの要素の型。</typeparam>
436       <exception cref="T:System.ArgumentNullException">
437         <paramref name="first" /> または <paramref name="second" /> が null です。</exception>
438     </member>
439     <member name="M:System.Linq.Enumerable.First``1(System.Collections.Generic.IEnumerable{``0})">
440       <summary>シーケンスの最初の要素を返します。</summary>
441       <returns>指定されたシーケンスの最初の要素。</returns>
442       <param name="source">最初の要素を返す <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
443       <typeparam name="TSource">
444         <paramref name="source" /> の要素の型。</typeparam>
445       <exception cref="T:System.ArgumentNullException">
446         <paramref name="source" /> は null なので、</exception>
447       <exception cref="T:System.InvalidOperationException">ソース シーケンスが空です。</exception>
448     </member>
449     <member name="M:System.Linq.Enumerable.First``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})">
450       <summary>指定された条件を満たす、シーケンスの最初の要素を返します。</summary>
451       <returns>指定された述語関数でテストに合格する、シーケンスの最初の要素。</returns>
452       <param name="source">返される要素が含まれる <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
453       <param name="predicate">各要素が条件を満たしているかどうかをテストする関数。</param>
454       <typeparam name="TSource">
455         <paramref name="source" /> の要素の型。</typeparam>
456       <exception cref="T:System.ArgumentNullException">
457         <paramref name="source" /> または <paramref name="predicate" /> が null です。</exception>
458       <exception cref="T:System.InvalidOperationException">
459         <paramref name="predicate" /> の条件を満たす要素がありません。またはソース シーケンスが空です。</exception>
460     </member>
461     <member name="M:System.Linq.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0})">
462       <summary>シーケンスの最初の要素を返します。シーケンスに要素が含まれていない場合は既定値を返します。</summary>
463       <returns>
464         <paramref name="source" /> が空の場合は default(<paramref name="TSource" />)。それ以外の場合は <paramref name="source" /> の最初の要素。</returns>
465       <param name="source">最初の要素を返す <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
466       <typeparam name="TSource">
467         <paramref name="source" /> の要素の型。</typeparam>
468       <exception cref="T:System.ArgumentNullException">
469         <paramref name="source" /> は null なので、</exception>
470     </member>
471     <member name="M:System.Linq.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})">
472       <summary>条件を満たす、シーケンスの最初の要素を返します。このような要素が見つからない場合は既定値を返します。</summary>
473       <returns>
474         <paramref name="source" /> が空の場合または <paramref name="predicate" /> で指定されたテストに合格する要素がない場合は default(<paramref name="TSource" />)。それ以外の場合は、<paramref name="predicate" /> で指定されたテストに合格する、<paramref name="source" /> の最初の要素。</returns>
475       <param name="source">返される要素が含まれる <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
476       <param name="predicate">各要素が条件を満たしているかどうかをテストする関数。</param>
477       <typeparam name="TSource">
478         <paramref name="source" /> の要素の型。</typeparam>
479       <exception cref="T:System.ArgumentNullException">
480         <paramref name="source" /> または <paramref name="predicate" /> が null です。</exception>
481     </member>
482     <member name="M:System.Linq.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})">
483       <summary>指定されたキー セレクター関数に従ってシーケンスの要素をグループ化します。</summary>
484       <returns>C# では IEnumerable&lt;IGrouping&lt;TKey, TSource&gt;&gt;、Visual Basic では IEnumerable(Of IGrouping(Of TKey, TSource))。ここでは、各 <see cref="T:System.Linq.IGrouping`2" /> オブジェクトに、オブジェクトのシーケンス、およびキーが格納されています。</returns>
485       <param name="source">グループ化する要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
486       <param name="keySelector">各要素のキーを抽出する関数。</param>
487       <typeparam name="TSource">
488         <paramref name="source" /> の要素の型。</typeparam>
489       <typeparam name="TKey">
490         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
491       <exception cref="T:System.ArgumentNullException">
492         <paramref name="source" /> または <paramref name="keySelector" /> が null です。</exception>
493     </member>
494     <member name="M:System.Linq.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
495       <summary>指定されたキー セレクター関数に従ってシーケンスの要素をグループ化し、指定された比較子を使用してキーを比較します。</summary>
496       <returns>C# では IEnumerable&lt;IGrouping&lt;TKey, TSource&gt;&gt;、Visual Basic では IEnumerable(Of IGrouping(Of TKey, TSource))。ここでは、各 <see cref="T:System.Linq.IGrouping`2" /> オブジェクトに、オブジェクトのコレクション、およびキーが格納されています。</returns>
497       <param name="source">グループ化する要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
498       <param name="keySelector">各要素のキーを抽出する関数。</param>
499       <param name="comparer">キーを比較する <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
500       <typeparam name="TSource">
501         <paramref name="source" /> の要素の型。</typeparam>
502       <typeparam name="TKey">
503         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
504       <exception cref="T:System.ArgumentNullException">
505         <paramref name="source" /> または <paramref name="keySelector" /> が null です。</exception>
506     </member>
507     <member name="M:System.Linq.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2})">
508       <summary>指定されたキー セレクター関数に従ってシーケンスの要素をグループ化し、指定された関数を使用して各グループの要素を射影します。</summary>
509       <returns>C# では IEnumerable&lt;IGrouping&lt;TKey, TElement&gt;&gt;、Visual Basic では IEnumerable(Of IGrouping(Of TKey, TElement))。ここでは、各 <see cref="T:System.Linq.IGrouping`2" /> オブジェクトに、<paramref name="TElement" /> 型のオブジェクトのコレクション、およびキーが格納されています。</returns>
510       <param name="source">グループ化する要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
511       <param name="keySelector">各要素のキーを抽出する関数。</param>
512       <param name="elementSelector">ソースの各要素を <see cref="T:System.Linq.IGrouping`2" /> の要素に割り当てる関数。</param>
513       <typeparam name="TSource">
514         <paramref name="source" /> の要素の型。</typeparam>
515       <typeparam name="TKey">
516         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
517       <typeparam name="TElement">
518         <see cref="T:System.Linq.IGrouping`2" /> 内の要素の型。</typeparam>
519       <exception cref="T:System.ArgumentNullException">
520         <paramref name="source" />、<paramref name="keySelector" />、または <paramref name="elementSelector" /> が null です。</exception>
521     </member>
522     <member name="M:System.Linq.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">
523       <summary>キー セレクター関数に従ってシーケンスの要素をグループ化します。キーの比較には、比較子を使用し、各グループの要素の射影には、指定された関数を使用します。</summary>
524       <returns>C# では IEnumerable&lt;IGrouping&lt;TKey, TElement&gt;&gt;、Visual Basic では IEnumerable(Of IGrouping(Of TKey, TElement))。ここでは、各 <see cref="T:System.Linq.IGrouping`2" /> オブジェクトに、<paramref name="TElement" /> 型のオブジェクトのコレクション、およびキーが格納されています。</returns>
525       <param name="source">グループ化する要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
526       <param name="keySelector">各要素のキーを抽出する関数。</param>
527       <param name="elementSelector">ソースの各要素を <see cref="T:System.Linq.IGrouping`2" /> の要素に割り当てる関数。</param>
528       <param name="comparer">キーを比較する <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
529       <typeparam name="TSource">
530         <paramref name="source" /> の要素の型。</typeparam>
531       <typeparam name="TKey">
532         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
533       <typeparam name="TElement">
534         <see cref="T:System.Linq.IGrouping`2" /> 内の要素の型。</typeparam>
535       <exception cref="T:System.ArgumentNullException">
536         <paramref name="source" />、<paramref name="keySelector" />、または <paramref name="elementSelector" /> が null です。</exception>
537     </member>
538     <member name="M:System.Linq.Enumerable.GroupBy``4(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Func{``1,System.Collections.Generic.IEnumerable{``2},``3})">
539       <summary>指定されたキー セレクター関数に従ってシーケンスの要素をグループ化し、各グループとそのキーから結果値を作成します。各グループの要素は、指定された関数を使用して射影されます。</summary>
540       <returns>
541         <paramref name="TResult" /> 型の要素のコレクション。各要素は、グループとそのキーの射影を表します。</returns>
542       <param name="source">グループ化する要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
543       <param name="keySelector">各要素のキーを抽出する関数。</param>
544       <param name="elementSelector">ソースの各要素を <see cref="T:System.Linq.IGrouping`2" /> の要素に割り当てる関数。</param>
545       <param name="resultSelector">各グループから結果値を作成する関数。</param>
546       <typeparam name="TSource">
547         <paramref name="source" /> の要素の型。</typeparam>
548       <typeparam name="TKey">
549         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
550       <typeparam name="TElement">各 <see cref="T:System.Linq.IGrouping`2" /> の要素の型。</typeparam>
551       <typeparam name="TResult">
552         <paramref name="resultSelector" /> によって返される結果値の型。</typeparam>
553     </member>
554     <member name="M:System.Linq.Enumerable.GroupBy``4(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Func{``1,System.Collections.Generic.IEnumerable{``2},``3},System.Collections.Generic.IEqualityComparer{``1})">
555       <summary>指定されたキー セレクター関数に従ってシーケンスの要素をグループ化し、各グループとそのキーから結果値を作成します。キー値の比較には、指定された比較子を使用し、各グループの要素の射影には、指定された関数を使用します。</summary>
556       <returns>
557         <paramref name="TResult" /> 型の要素のコレクション。各要素は、グループとそのキーの射影を表します。</returns>
558       <param name="source">グループ化する要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
559       <param name="keySelector">各要素のキーを抽出する関数。</param>
560       <param name="elementSelector">ソースの各要素を <see cref="T:System.Linq.IGrouping`2" /> の要素に割り当てる関数。</param>
561       <param name="resultSelector">各グループから結果値を作成する関数。</param>
562       <param name="comparer">キーの比較対象となる <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
563       <typeparam name="TSource">
564         <paramref name="source" /> の要素の型。</typeparam>
565       <typeparam name="TKey">
566         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
567       <typeparam name="TElement">各 <see cref="T:System.Linq.IGrouping`2" /> の要素の型。</typeparam>
568       <typeparam name="TResult">
569         <paramref name="resultSelector" /> によって返される結果値の型。</typeparam>
570     </member>
571     <member name="M:System.Linq.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``1,System.Collections.Generic.IEnumerable{``0},``2})">
572       <summary>指定されたキー セレクター関数に従ってシーケンスの要素をグループ化し、各グループとそのキーから結果値を作成します。</summary>
573       <returns>
574         <paramref name="TResult" /> 型の要素のコレクション。各要素は、グループとそのキーの射影を表します。</returns>
575       <param name="source">グループ化する要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
576       <param name="keySelector">各要素のキーを抽出する関数。</param>
577       <param name="resultSelector">各グループから結果値を作成する関数。</param>
578       <typeparam name="TSource">
579         <paramref name="source" /> の要素の型。</typeparam>
580       <typeparam name="TKey">
581         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
582       <typeparam name="TResult">
583         <paramref name="resultSelector" /> によって返される結果値の型。</typeparam>
584     </member>
585     <member name="M:System.Linq.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``1,System.Collections.Generic.IEnumerable{``0},``2},System.Collections.Generic.IEqualityComparer{``1})">
586       <summary>指定されたキー セレクター関数に従ってシーケンスの要素をグループ化し、各グループとそのキーから結果値を作成します。キーの比較には、指定された比較子を使用します。</summary>
587       <returns>
588         <paramref name="TResult" /> 型の要素のコレクション。各要素は、グループとそのキーの射影を表します。</returns>
589       <param name="source">グループ化する要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
590       <param name="keySelector">各要素のキーを抽出する関数。</param>
591       <param name="resultSelector">各グループから結果値を作成する関数。</param>
592       <param name="comparer">キーの比較対象となる <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
593       <typeparam name="TSource">
594         <paramref name="source" /> の要素の型。</typeparam>
595       <typeparam name="TKey">
596         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
597       <typeparam name="TResult">
598         <paramref name="resultSelector" /> によって返される結果値の型。</typeparam>
599     </member>
600     <member name="M:System.Linq.Enumerable.GroupJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,System.Collections.Generic.IEnumerable{``1},``3})">
601       <summary>キーが等しいかどうかに基づいて 2 つのシーケンスの要素を相互に関連付け、その結果をグループ化します。キーの比較には既定の等値比較子が使用されます。</summary>
602       <returns>2 つのシーケンスに対してグループ化結合を実行して取得する、<paramref name="TResult" /> 型の要素が格納されている <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
603       <param name="outer">結合する最初のシーケンス。</param>
604       <param name="inner">最初のシーケンスに結合するシーケンス。</param>
605       <param name="outerKeySelector">最初のシーケンスの各要素から結合キーを抽出する関数。</param>
606       <param name="innerKeySelector">2 番目のシーケンスの各要素から結合キーを抽出する関数。</param>
607       <param name="resultSelector">最初のシーケンスの要素と、2 番目のシーケンスの一致する要素のコレクションから結果の要素を作成する関数。</param>
608       <typeparam name="TOuter">最初のシーケンスの要素の型。</typeparam>
609       <typeparam name="TInner">2 番目のシーケンスの要素の型。</typeparam>
610       <typeparam name="TKey">キー セレクター関数によって返されるキーの型。</typeparam>
611       <typeparam name="TResult">結果の要素の型。</typeparam>
612       <exception cref="T:System.ArgumentNullException">
613         <paramref name="outer" />、<paramref name="inner" />、<paramref name="outerKeySelector" />、<paramref name="innerKeySelector" />、または <paramref name="resultSelector" /> が null です。</exception>
614     </member>
615     <member name="M:System.Linq.Enumerable.GroupJoin``4(System.Collections.Generic.IEnumerable{``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})">
616       <summary>キーが等しいかどうかに基づいて 2 つのシーケンスの要素を相互に関連付け、その結果をグループ化します。指定された <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> を使用してキーを比較します。</summary>
617       <returns>2 つのシーケンスに対してグループ化結合を実行して取得する、<paramref name="TResult" /> 型の要素が格納されている <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
618       <param name="outer">結合する最初のシーケンス。</param>
619       <param name="inner">最初のシーケンスに結合するシーケンス。</param>
620       <param name="outerKeySelector">最初のシーケンスの各要素から結合キーを抽出する関数。</param>
621       <param name="innerKeySelector">2 番目のシーケンスの各要素から結合キーを抽出する関数。</param>
622       <param name="resultSelector">最初のシーケンスの要素と、2 番目のシーケンスの一致する要素のコレクションから結果の要素を作成する関数。</param>
623       <param name="comparer">キーをハッシュして比較する <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
624       <typeparam name="TOuter">最初のシーケンスの要素の型。</typeparam>
625       <typeparam name="TInner">2 番目のシーケンスの要素の型。</typeparam>
626       <typeparam name="TKey">キー セレクター関数によって返されるキーの型。</typeparam>
627       <typeparam name="TResult">結果の要素の型。</typeparam>
628       <exception cref="T:System.ArgumentNullException">
629         <paramref name="outer" />、<paramref name="inner" />、<paramref name="outerKeySelector" />、<paramref name="innerKeySelector" />、または <paramref name="resultSelector" /> が null です。</exception>
630     </member>
631     <member name="M:System.Linq.Enumerable.Intersect``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
632       <summary>既定の等値比較子を使用して値を比較することにより、2 つのシーケンスの積集合を生成します。</summary>
633       <returns>2 つのシーケンスの積集合を構成する要素が格納されているシーケンス。</returns>
634       <param name="first">
635         <paramref name="second" /> にも含まれる、返される一意の要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
636       <param name="second">最初のシーケンスにも含まれる、返される一意の要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
637       <typeparam name="TSource">入力シーケンスの要素の型。</typeparam>
638       <exception cref="T:System.ArgumentNullException">
639         <paramref name="first" /> または <paramref name="second" /> が null です。</exception>
640     </member>
641     <member name="M:System.Linq.Enumerable.Intersect``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
642       <summary>指定された <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> を使用して値を比較することにより、2 つのシーケンスの積集合を生成します。</summary>
643       <returns>2 つのシーケンスの積集合を構成する要素が格納されているシーケンス。</returns>
644       <param name="first">
645         <paramref name="second" /> にも含まれる、返される一意の要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
646       <param name="second">最初のシーケンスにも含まれる、返される一意の要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
647       <param name="comparer">値を比較する <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
648       <typeparam name="TSource">入力シーケンスの要素の型。</typeparam>
649       <exception cref="T:System.ArgumentNullException">
650         <paramref name="first" /> または <paramref name="second" /> が null です。</exception>
651     </member>
652     <member name="M:System.Linq.Enumerable.Join``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3})">
653       <summary>一致するキーに基づいて 2 つのシーケンスの要素を相互に関連付けます。キーの比較には既定の等値比較子が使用されます。</summary>
654       <returns>2 つのシーケンスに対して内部結合を実行して取得する、<paramref name="TResult" /> 型の要素が格納されている <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
655       <param name="outer">結合する最初のシーケンス。</param>
656       <param name="inner">最初のシーケンスに結合するシーケンス。</param>
657       <param name="outerKeySelector">最初のシーケンスの各要素から結合キーを抽出する関数。</param>
658       <param name="innerKeySelector">2 番目のシーケンスの各要素から結合キーを抽出する関数。</param>
659       <param name="resultSelector">一致する 2 つの要素から結果の要素を作成する関数。</param>
660       <typeparam name="TOuter">最初のシーケンスの要素の型。</typeparam>
661       <typeparam name="TInner">2 番目のシーケンスの要素の型。</typeparam>
662       <typeparam name="TKey">キー セレクター関数によって返されるキーの型。</typeparam>
663       <typeparam name="TResult">結果の要素の型。</typeparam>
664       <exception cref="T:System.ArgumentNullException">
665         <paramref name="outer" />、<paramref name="inner" />、<paramref name="outerKeySelector" />、<paramref name="innerKeySelector" />、または <paramref name="resultSelector" /> が null です。</exception>
666     </member>
667     <member name="M:System.Linq.Enumerable.Join``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``2},System.Func{``1,``2},System.Func{``0,``1,``3},System.Collections.Generic.IEqualityComparer{``2})">
668       <summary>一致するキーに基づいて 2 つのシーケンスの要素を相互に関連付けます。指定された <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> を使用してキーを比較します。</summary>
669       <returns>2 つのシーケンスに対して内部結合を実行して取得する、<paramref name="TResult" /> 型の要素が格納されている <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
670       <param name="outer">結合する最初のシーケンス。</param>
671       <param name="inner">最初のシーケンスに結合するシーケンス。</param>
672       <param name="outerKeySelector">最初のシーケンスの各要素から結合キーを抽出する関数。</param>
673       <param name="innerKeySelector">2 番目のシーケンスの各要素から結合キーを抽出する関数。</param>
674       <param name="resultSelector">一致する 2 つの要素から結果の要素を作成する関数。</param>
675       <param name="comparer">キーをハッシュして比較する <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
676       <typeparam name="TOuter">最初のシーケンスの要素の型。</typeparam>
677       <typeparam name="TInner">2 番目のシーケンスの要素の型。</typeparam>
678       <typeparam name="TKey">キー セレクター関数によって返されるキーの型。</typeparam>
679       <typeparam name="TResult">結果の要素の型。</typeparam>
680       <exception cref="T:System.ArgumentNullException">
681         <paramref name="outer" />、<paramref name="inner" />、<paramref name="outerKeySelector" />、<paramref name="innerKeySelector" />、または <paramref name="resultSelector" /> が null です。</exception>
682     </member>
683     <member name="M:System.Linq.Enumerable.Last``1(System.Collections.Generic.IEnumerable{``0})">
684       <summary>シーケンスの最後の要素を返します。</summary>
685       <returns>ソース シーケンスの最後の位置にある値。</returns>
686       <param name="source">最後の要素を返す <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
687       <typeparam name="TSource">
688         <paramref name="source" /> の要素の型。</typeparam>
689       <exception cref="T:System.ArgumentNullException">
690         <paramref name="source" /> は null なので、</exception>
691       <exception cref="T:System.InvalidOperationException">ソース シーケンスが空です。</exception>
692     </member>
693     <member name="M:System.Linq.Enumerable.Last``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})">
694       <summary>指定された条件を満たす、シーケンスの最後の要素を返します。</summary>
695       <returns>指定された述語関数でテストに合格する、シーケンスの最後の要素。</returns>
696       <param name="source">返される要素が含まれる <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
697       <param name="predicate">各要素が条件を満たしているかどうかをテストする関数。</param>
698       <typeparam name="TSource">
699         <paramref name="source" /> の要素の型。</typeparam>
700       <exception cref="T:System.ArgumentNullException">
701         <paramref name="source" /> または <paramref name="predicate" /> が null です。</exception>
702       <exception cref="T:System.InvalidOperationException">
703         <paramref name="predicate" /> の条件を満たす要素がありません。またはソース シーケンスが空です。</exception>
704     </member>
705     <member name="M:System.Linq.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0})">
706       <summary>シーケンスの最後の要素を返します。シーケンスに要素が含まれていない場合は既定値を返します。</summary>
707       <returns>ソース シーケンスが空の場合は default (<paramref name="TSource" />)。それ以外の場合は <see cref="T:System.Collections.Generic.IEnumerable`1" /> の最後の要素。</returns>
708       <param name="source">最後の要素を返す <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
709       <typeparam name="TSource">
710         <paramref name="source" /> の要素の型。</typeparam>
711       <exception cref="T:System.ArgumentNullException">
712         <paramref name="source" /> は null なので、</exception>
713     </member>
714     <member name="M:System.Linq.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})">
715       <summary>条件を満たす、シーケンスの最後の要素を返します。このような要素が見つからない場合は既定値を返します。</summary>
716       <returns>シーケンスが空の場合、または述語関数でテストに合格する要素がない場合は default (<paramref name="TSource" />)。それ以外の場合は、述語関数でテストに合格する最後の要素。</returns>
717       <param name="source">返される要素が含まれる <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
718       <param name="predicate">各要素が条件を満たしているかどうかをテストする関数。</param>
719       <typeparam name="TSource">
720         <paramref name="source" /> の要素の型。</typeparam>
721       <exception cref="T:System.ArgumentNullException">
722         <paramref name="source" /> または <paramref name="predicate" /> が null です。</exception>
723     </member>
724     <member name="M:System.Linq.Enumerable.LongCount``1(System.Collections.Generic.IEnumerable{``0})">
725       <summary>シーケンス内の要素の合計数を表す <see cref="T:System.Int64" /> を返します。</summary>
726       <returns>ソース シーケンスの要素数。</returns>
727       <param name="source">カウントする要素が格納されている <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
728       <typeparam name="TSource">
729         <paramref name="source" /> の要素の型。</typeparam>
730       <exception cref="T:System.ArgumentNullException">
731         <paramref name="source" /> は null なので、</exception>
732       <exception cref="T:System.OverflowException">要素数が <see cref="F:System.Int64.MaxValue" /> を超えています。</exception>
733     </member>
734     <member name="M:System.Linq.Enumerable.LongCount``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})">
735       <summary>シーケンス内で条件を満たす要素の数を表す <see cref="T:System.Int64" /> を返します。</summary>
736       <returns>述語関数の条件を満たす、シーケンス内の要素数を表す数値。</returns>
737       <param name="source">カウントする要素が格納されている <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
738       <param name="predicate">各要素が条件を満たしているかどうかをテストする関数。</param>
739       <typeparam name="TSource">
740         <paramref name="source" /> の要素の型。</typeparam>
741       <exception cref="T:System.ArgumentNullException">
742         <paramref name="source" /> または <paramref name="predicate" /> が null です。</exception>
743       <exception cref="T:System.OverflowException">一致する要素数が <see cref="F:System.Int64.MaxValue" /> を超えています。</exception>
744     </member>
745     <member name="M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Decimal})">
746       <summary>
747         <see cref="T:System.Decimal" /> 値のシーケンスの最大値を返します。</summary>
748       <returns>シーケンスの最大値。</returns>
749       <param name="source">最大値を確認する対象となる <see cref="T:System.Decimal" /> 値のシーケンス。</param>
750       <exception cref="T:System.ArgumentNullException">
751         <paramref name="source" /> は null なので、</exception>
752       <exception cref="T:System.InvalidOperationException">
753         <paramref name="source" /> に要素が含まれていません。</exception>
754     </member>
755     <member name="M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Double})">
756       <summary>
757         <see cref="T:System.Double" /> 値のシーケンスの最大値を返します。</summary>
758       <returns>シーケンスの最大値。</returns>
759       <param name="source">最大値を確認する対象となる <see cref="T:System.Double" /> 値のシーケンス。</param>
760       <exception cref="T:System.ArgumentNullException">
761         <paramref name="source" /> は null なので、</exception>
762       <exception cref="T:System.InvalidOperationException">
763         <paramref name="source" /> に要素が含まれていません。</exception>
764     </member>
765     <member name="M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Int32})">
766       <summary>
767         <see cref="T:System.Int32" /> 値のシーケンスの最大値を返します。</summary>
768       <returns>シーケンスの最大値。</returns>
769       <param name="source">最大値を確認する対象となる <see cref="T:System.Int32" /> 値のシーケンス。</param>
770       <exception cref="T:System.ArgumentNullException">
771         <paramref name="source" /> は null なので、</exception>
772       <exception cref="T:System.InvalidOperationException">
773         <paramref name="source" /> に要素が含まれていません。</exception>
774     </member>
775     <member name="M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Int64})">
776       <summary>
777         <see cref="T:System.Int64" /> 値のシーケンスの最大値を返します。</summary>
778       <returns>シーケンスの最大値。</returns>
779       <param name="source">最大値を確認する対象となる <see cref="T:System.Int64" /> 値のシーケンス。</param>
780       <exception cref="T:System.ArgumentNullException">
781         <paramref name="source" /> は null なので、</exception>
782       <exception cref="T:System.InvalidOperationException">
783         <paramref name="source" /> に要素が含まれていません。</exception>
784     </member>
785     <member name="M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">
786       <summary>null 許容の <see cref="T:System.Decimal" /> 値のシーケンスの最大値を返します。</summary>
787       <returns>シーケンスの最大値に対応する Nullable&lt;Decimal&gt; 型 (C# の場合) または Nullable(Of Decimal) 型 (Visual Basic の場合) の値。 </returns>
788       <param name="source">最大値を確認する対象となる null 許容の <see cref="T:System.Decimal" /> 値のシーケンス。</param>
789       <exception cref="T:System.ArgumentNullException">
790         <paramref name="source" /> は null なので、</exception>
791     </member>
792     <member name="M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">
793       <summary>null 許容の <see cref="T:System.Double" /> 値のシーケンスの最大値を返します。</summary>
794       <returns>シーケンスの最大値に対応する Nullable&lt;Double&gt; 型 (C# の場合) または Nullable(Of Double) 型 (Visual Basic の場合) の値。</returns>
795       <param name="source">最大値を確認する対象となる null 許容の <see cref="T:System.Double" /> 値のシーケンス。</param>
796       <exception cref="T:System.ArgumentNullException">
797         <paramref name="source" /> は null なので、</exception>
798     </member>
799     <member name="M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
800       <summary>null 許容の <see cref="T:System.Int32" /> 値のシーケンスの最大値を返します。</summary>
801       <returns>シーケンスの最大値に対応する Nullable&lt;Int32&gt; 型 (C# の場合) または Nullable(Of Int32) 型 (Visual Basic の場合) の値。 </returns>
802       <param name="source">最大値を確認する対象となる null 許容の <see cref="T:System.Int32" /> 値のシーケンス。</param>
803       <exception cref="T:System.ArgumentNullException">
804         <paramref name="source" /> は null なので、</exception>
805     </member>
806     <member name="M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">
807       <summary>null 許容の <see cref="T:System.Int64" /> 値のシーケンスの最大値を返します。</summary>
808       <returns>シーケンスの最大値に対応する Nullable&lt;Int64&gt; 型 (C# の場合) または Nullable(Of Int64) 型 (Visual Basic の場合) の値。 </returns>
809       <param name="source">最大値を確認する対象となる null 許容の <see cref="T:System.Int64" /> 値のシーケンス。</param>
810       <exception cref="T:System.ArgumentNullException">
811         <paramref name="source" /> は null なので、</exception>
812     </member>
813     <member name="M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">
814       <summary>null 許容の <see cref="T:System.Single" /> 値のシーケンスの最大値を返します。</summary>
815       <returns>シーケンスの最大値に対応する Nullable&lt;Single&gt; 型 (C# の場合) または Nullable(Of Single) 型 (Visual Basic の場合) の値。</returns>
816       <param name="source">最大値を確認する対象となる null 許容の <see cref="T:System.Single" /> 値のシーケンス。</param>
817       <exception cref="T:System.ArgumentNullException">
818         <paramref name="source" /> は null なので、</exception>
819     </member>
820     <member name="M:System.Linq.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Single})">
821       <summary>
822         <see cref="T:System.Single" /> 値のシーケンスの最大値を返します。</summary>
823       <returns>シーケンスの最大値。</returns>
824       <param name="source">最大値を確認する対象となる <see cref="T:System.Single" /> 値のシーケンス。</param>
825       <exception cref="T:System.ArgumentNullException">
826         <paramref name="source" /> は null なので、</exception>
827       <exception cref="T:System.InvalidOperationException">
828         <paramref name="source" /> に要素が含まれていません。</exception>
829     </member>
830     <member name="M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0})">
831       <summary>ジェネリック シーケンスの最大値を返します。</summary>
832       <returns>シーケンスの最大値。</returns>
833       <param name="source">最大値を確認する対象となる値のシーケンス。</param>
834       <typeparam name="TSource">
835         <paramref name="source" /> の要素の型。</typeparam>
836       <exception cref="T:System.ArgumentNullException">
837         <paramref name="source" /> は null なので、</exception>
838     </member>
839     <member name="M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Decimal})">
840       <summary>シーケンスの各要素に対して変換関数を呼び出し、<see cref="T:System.Decimal" /> の最大値を返します。</summary>
841       <returns>シーケンスの最大値。</returns>
842       <param name="source">最大値を確認する対象となる値のシーケンス。</param>
843       <param name="selector">各要素に適用する変換関数。</param>
844       <typeparam name="TSource">
845         <paramref name="source" /> の要素の型。</typeparam>
846       <exception cref="T:System.ArgumentNullException">
847         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
848       <exception cref="T:System.InvalidOperationException">
849         <paramref name="source" /> に要素が含まれていません。</exception>
850     </member>
851     <member name="M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Double})">
852       <summary>シーケンスの各要素に対して変換関数を呼び出し、<see cref="T:System.Double" /> の最大値を返します。</summary>
853       <returns>シーケンスの最大値。</returns>
854       <param name="source">最大値を確認する対象となる値のシーケンス。</param>
855       <param name="selector">各要素に適用する変換関数。</param>
856       <typeparam name="TSource">
857         <paramref name="source" /> の要素の型。</typeparam>
858       <exception cref="T:System.ArgumentNullException">
859         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
860       <exception cref="T:System.InvalidOperationException">
861         <paramref name="source" /> に要素が含まれていません。</exception>
862     </member>
863     <member name="M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32})">
864       <summary>シーケンスの各要素に対して変換関数を呼び出し、<see cref="T:System.Int32" /> の最大値を返します。</summary>
865       <returns>シーケンスの最大値。</returns>
866       <param name="source">最大値を確認する対象となる値のシーケンス。</param>
867       <param name="selector">各要素に適用する変換関数。</param>
868       <typeparam name="TSource">
869         <paramref name="source" /> の要素の型。</typeparam>
870       <exception cref="T:System.ArgumentNullException">
871         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
872       <exception cref="T:System.InvalidOperationException">
873         <paramref name="source" /> に要素が含まれていません。</exception>
874     </member>
875     <member name="M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int64})">
876       <summary>シーケンスの各要素に対して変換関数を呼び出し、<see cref="T:System.Int64" /> の最大値を返します。</summary>
877       <returns>シーケンスの最大値。</returns>
878       <param name="source">最大値を確認する対象となる値のシーケンス。</param>
879       <param name="selector">各要素に適用する変換関数。</param>
880       <typeparam name="TSource">
881         <paramref name="source" /> の要素の型。</typeparam>
882       <exception cref="T:System.ArgumentNullException">
883         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
884       <exception cref="T:System.InvalidOperationException">
885         <paramref name="source" /> に要素が含まれていません。</exception>
886     </member>
887     <member name="M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Decimal}})">
888       <summary>シーケンスの各要素に対して変換関数を呼び出し、null 許容の <see cref="T:System.Decimal" /> の最大値を返します。</summary>
889       <returns>シーケンスの最大値に対応する Nullable&lt;Decimal&gt; 型 (C# の場合) または Nullable(Of Decimal) 型 (Visual Basic の場合) の値。</returns>
890       <param name="source">最大値を確認する対象となる値のシーケンス。</param>
891       <param name="selector">各要素に適用する変換関数。</param>
892       <typeparam name="TSource">
893         <paramref name="source" /> の要素の型。</typeparam>
894       <exception cref="T:System.ArgumentNullException">
895         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
896     </member>
897     <member name="M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Double}})">
898       <summary>シーケンスの各要素に対して変換関数を呼び出し、null 許容の <see cref="T:System.Double" /> の最大値を返します。</summary>
899       <returns>シーケンスの最大値に対応する Nullable&lt;Double&gt; 型 (C# の場合) または Nullable(Of Double) 型 (Visual Basic の場合) の値。</returns>
900       <param name="source">最大値を確認する対象となる値のシーケンス。</param>
901       <param name="selector">各要素に適用する変換関数。</param>
902       <typeparam name="TSource">
903         <paramref name="source" /> の要素の型。</typeparam>
904       <exception cref="T:System.ArgumentNullException">
905         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
906     </member>
907     <member name="M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int32}})">
908       <summary>シーケンスの各要素に対して変換関数を呼び出し、null 許容の <see cref="T:System.Int32" /> の最大値を返します。</summary>
909       <returns>シーケンスの最大値に対応する Nullable&lt;Int32&gt; 型 (C# の場合) または Nullable(Of Int32) 型 (Visual Basic の場合) の値。</returns>
910       <param name="source">最大値を確認する対象となる値のシーケンス。</param>
911       <param name="selector">各要素に適用する変換関数。</param>
912       <typeparam name="TSource">
913         <paramref name="source" /> の要素の型。</typeparam>
914       <exception cref="T:System.ArgumentNullException">
915         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
916     </member>
917     <member name="M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int64}})">
918       <summary>シーケンスの各要素に対して変換関数を呼び出し、null 許容の <see cref="T:System.Int64" /> の最大値を返します。</summary>
919       <returns>シーケンスの最大値に対応する Nullable&lt;Int64&gt; 型 (C# の場合) または Nullable(Of Int64) 型 (Visual Basic の場合) の値。</returns>
920       <param name="source">最大値を確認する対象となる値のシーケンス。</param>
921       <param name="selector">各要素に適用する変換関数。</param>
922       <typeparam name="TSource">
923         <paramref name="source" /> の要素の型。</typeparam>
924       <exception cref="T:System.ArgumentNullException">
925         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
926     </member>
927     <member name="M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Single}})">
928       <summary>シーケンスの各要素に対して変換関数を呼び出し、null 許容の <see cref="T:System.Single" /> の最大値を返します。</summary>
929       <returns>シーケンスの最大値に対応する Nullable&lt;Single&gt; 型 (C# の場合) または Nullable(Of Single) 型 (Visual Basic の場合) の値。</returns>
930       <param name="source">最大値を確認する対象となる値のシーケンス。</param>
931       <param name="selector">各要素に適用する変換関数。</param>
932       <typeparam name="TSource">
933         <paramref name="source" /> の要素の型。</typeparam>
934       <exception cref="T:System.ArgumentNullException">
935         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
936     </member>
937     <member name="M:System.Linq.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Single})">
938       <summary>シーケンスの各要素に対して変換関数を呼び出し、<see cref="T:System.Single" /> の最大値を返します。</summary>
939       <returns>シーケンスの最大値。</returns>
940       <param name="source">最大値を確認する対象となる値のシーケンス。</param>
941       <param name="selector">各要素に適用する変換関数。</param>
942       <typeparam name="TSource">
943         <paramref name="source" /> の要素の型。</typeparam>
944       <exception cref="T:System.ArgumentNullException">
945         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
946       <exception cref="T:System.InvalidOperationException">
947         <paramref name="source" /> に要素が含まれていません。</exception>
948     </member>
949     <member name="M:System.Linq.Enumerable.Max``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})">
950       <summary>ジェネリック シーケンスの各要素に対して変換関数を呼び出し、結果の最大値を返します。</summary>
951       <returns>シーケンスの最大値。</returns>
952       <param name="source">最大値を確認する対象となる値のシーケンス。</param>
953       <param name="selector">各要素に適用する変換関数。</param>
954       <typeparam name="TSource">
955         <paramref name="source" /> の要素の型。</typeparam>
956       <typeparam name="TResult">
957         <paramref name="selector" /> によって返される値の型。</typeparam>
958       <exception cref="T:System.ArgumentNullException">
959         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
960     </member>
961     <member name="M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Decimal})">
962       <summary>
963         <see cref="T:System.Decimal" /> 値のシーケンスの最小値を返します。</summary>
964       <returns>シーケンスの最小値。</returns>
965       <param name="source">最小値を確認する対象となる <see cref="T:System.Decimal" /> 値のシーケンス。</param>
966       <exception cref="T:System.ArgumentNullException">
967         <paramref name="source" /> は null なので、</exception>
968       <exception cref="T:System.InvalidOperationException">
969         <paramref name="source" /> に要素が含まれていません。</exception>
970     </member>
971     <member name="M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Double})">
972       <summary>
973         <see cref="T:System.Double" /> 値のシーケンスの最小値を返します。</summary>
974       <returns>シーケンスの最小値。</returns>
975       <param name="source">最小値を確認する対象となる <see cref="T:System.Double" /> 値のシーケンス。</param>
976       <exception cref="T:System.ArgumentNullException">
977         <paramref name="source" /> は null なので、</exception>
978       <exception cref="T:System.InvalidOperationException">
979         <paramref name="source" /> に要素が含まれていません。</exception>
980     </member>
981     <member name="M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Int32})">
982       <summary>
983         <see cref="T:System.Int32" /> 値のシーケンスの最小値を返します。</summary>
984       <returns>シーケンスの最小値。</returns>
985       <param name="source">最小値を確認する対象となる <see cref="T:System.Int32" /> 値のシーケンス。</param>
986       <exception cref="T:System.ArgumentNullException">
987         <paramref name="source" /> は null なので、</exception>
988       <exception cref="T:System.InvalidOperationException">
989         <paramref name="source" /> に要素が含まれていません。</exception>
990     </member>
991     <member name="M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Int64})">
992       <summary>
993         <see cref="T:System.Int64" /> 値のシーケンスの最小値を返します。</summary>
994       <returns>シーケンスの最小値。</returns>
995       <param name="source">最小値を確認する対象となる <see cref="T:System.Int64" /> 値のシーケンス。</param>
996       <exception cref="T:System.ArgumentNullException">
997         <paramref name="source" /> は null なので、</exception>
998       <exception cref="T:System.InvalidOperationException">
999         <paramref name="source" /> に要素が含まれていません。</exception>
1000     </member>
1001     <member name="M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">
1002       <summary>null 許容の <see cref="T:System.Decimal" /> 値のシーケンスの最小値を返します。</summary>
1003       <returns>シーケンスの最小値に対応する Nullable&lt;Decimal&gt; 型 (C# の場合) または Nullable(Of Decimal) 型 (Visual Basic の場合) の値。</returns>
1004       <param name="source">最小値を確認する対象となる null 許容の <see cref="T:System.Decimal" /> 値のシーケンス。</param>
1005       <exception cref="T:System.ArgumentNullException">
1006         <paramref name="source" /> は null なので、</exception>
1007     </member>
1008     <member name="M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">
1009       <summary>null 許容の <see cref="T:System.Double" /> 値のシーケンスの最小値を返します。</summary>
1010       <returns>シーケンスの最小値に対応する Nullable&lt;Double&gt; 型 (C# の場合) または Nullable(Of Double) 型 (Visual Basic の場合) の値。</returns>
1011       <param name="source">最小値を確認する対象となる null 許容の <see cref="T:System.Double" /> 値のシーケンス。</param>
1012       <exception cref="T:System.ArgumentNullException">
1013         <paramref name="source" /> は null なので、</exception>
1014     </member>
1015     <member name="M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
1016       <summary>null 許容の <see cref="T:System.Int32" /> 値のシーケンスの最小値を返します。</summary>
1017       <returns>シーケンスの最小値に対応する Nullable&lt;Int32&gt; 型 (C# の場合) または Nullable(Of Int32) 型 (Visual Basic の場合) の値。</returns>
1018       <param name="source">最小値を確認する対象となる null 許容の <see cref="T:System.Int32" /> 値のシーケンス。</param>
1019       <exception cref="T:System.ArgumentNullException">
1020         <paramref name="source" /> は null なので、</exception>
1021     </member>
1022     <member name="M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">
1023       <summary>null 許容の <see cref="T:System.Int64" /> 値のシーケンスの最小値を返します。</summary>
1024       <returns>シーケンスの最小値に対応する Nullable&lt;Int64&gt; 型 (C# の場合) または Nullable(Of Int64) 型 (Visual Basic の場合) の値。</returns>
1025       <param name="source">最小値を確認する対象となる null 許容の <see cref="T:System.Int64" /> 値のシーケンス。</param>
1026       <exception cref="T:System.ArgumentNullException">
1027         <paramref name="source" /> は null なので、</exception>
1028     </member>
1029     <member name="M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">
1030       <summary>null 許容の <see cref="T:System.Single" /> 値のシーケンスの最小値を返します。</summary>
1031       <returns>シーケンスの最小値に対応する Nullable&lt;Single&gt; 型 (C# の場合) または Nullable(Of Single) 型 (Visual Basic の場合) の値。</returns>
1032       <param name="source">最小値を確認する対象となる null 許容の <see cref="T:System.Single" /> 値のシーケンス。</param>
1033       <exception cref="T:System.ArgumentNullException">
1034         <paramref name="source" /> は null なので、</exception>
1035     </member>
1036     <member name="M:System.Linq.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Single})">
1037       <summary>
1038         <see cref="T:System.Single" /> 値のシーケンスの最小値を返します。</summary>
1039       <returns>シーケンスの最小値。</returns>
1040       <param name="source">最小値を確認する対象となる <see cref="T:System.Single" /> 値のシーケンス。</param>
1041       <exception cref="T:System.ArgumentNullException">
1042         <paramref name="source" /> は null なので、</exception>
1043       <exception cref="T:System.InvalidOperationException">
1044         <paramref name="source" /> に要素が含まれていません。</exception>
1045     </member>
1046     <member name="M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0})">
1047       <summary>ジェネリック シーケンスの最小値を返します。</summary>
1048       <returns>シーケンスの最小値。</returns>
1049       <param name="source">最小値を確認する対象となる値のシーケンス。</param>
1050       <typeparam name="TSource">
1051         <paramref name="source" /> の要素の型。</typeparam>
1052       <exception cref="T:System.ArgumentNullException">
1053         <paramref name="source" /> は null なので、</exception>
1054     </member>
1055     <member name="M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Decimal})">
1056       <summary>シーケンスの各要素に対して変換関数を呼び出し、<see cref="T:System.Decimal" /> の最小値を返します。</summary>
1057       <returns>シーケンスの最小値。</returns>
1058       <param name="source">最小値を確認する対象となる値のシーケンス。</param>
1059       <param name="selector">各要素に適用する変換関数。</param>
1060       <typeparam name="TSource">
1061         <paramref name="source" /> の要素の型。</typeparam>
1062       <exception cref="T:System.ArgumentNullException">
1063         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1064       <exception cref="T:System.InvalidOperationException">
1065         <paramref name="source" /> に要素が含まれていません。</exception>
1066     </member>
1067     <member name="M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Double})">
1068       <summary>シーケンスの各要素に対して変換関数を呼び出し、<see cref="T:System.Double" /> の最小値を返します。</summary>
1069       <returns>シーケンスの最小値。</returns>
1070       <param name="source">最小値を確認する対象となる値のシーケンス。</param>
1071       <param name="selector">各要素に適用する変換関数。</param>
1072       <typeparam name="TSource">
1073         <paramref name="source" /> の要素の型。</typeparam>
1074       <exception cref="T:System.ArgumentNullException">
1075         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1076       <exception cref="T:System.InvalidOperationException">
1077         <paramref name="source" /> に要素が含まれていません。</exception>
1078     </member>
1079     <member name="M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32})">
1080       <summary>シーケンスの各要素に対して変換関数を呼び出し、<see cref="T:System.Int32" /> の最小値を返します。</summary>
1081       <returns>シーケンスの最小値。</returns>
1082       <param name="source">最小値を確認する対象となる値のシーケンス。</param>
1083       <param name="selector">各要素に適用する変換関数。</param>
1084       <typeparam name="TSource">
1085         <paramref name="source" /> の要素の型。</typeparam>
1086       <exception cref="T:System.ArgumentNullException">
1087         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1088       <exception cref="T:System.InvalidOperationException">
1089         <paramref name="source" /> に要素が含まれていません。</exception>
1090     </member>
1091     <member name="M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int64})">
1092       <summary>シーケンスの各要素に対して変換関数を呼び出し、<see cref="T:System.Int64" /> の最小値を返します。</summary>
1093       <returns>シーケンスの最小値。</returns>
1094       <param name="source">最小値を確認する対象となる値のシーケンス。</param>
1095       <param name="selector">各要素に適用する変換関数。</param>
1096       <typeparam name="TSource">
1097         <paramref name="source" /> の要素の型。</typeparam>
1098       <exception cref="T:System.ArgumentNullException">
1099         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1100       <exception cref="T:System.InvalidOperationException">
1101         <paramref name="source" /> に要素が含まれていません。</exception>
1102     </member>
1103     <member name="M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Decimal}})">
1104       <summary>シーケンスの各要素に対して変換関数を呼び出し、null 許容の <see cref="T:System.Decimal" /> の最小値を返します。</summary>
1105       <returns>シーケンスの最小値に対応する Nullable&lt;Decimal&gt; 型 (C# の場合) または Nullable(Of Decimal) 型 (Visual Basic の場合) の値。</returns>
1106       <param name="source">最小値を確認する対象となる値のシーケンス。</param>
1107       <param name="selector">各要素に適用する変換関数。</param>
1108       <typeparam name="TSource">
1109         <paramref name="source" /> の要素の型。</typeparam>
1110       <exception cref="T:System.ArgumentNullException">
1111         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1112     </member>
1113     <member name="M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Double}})">
1114       <summary>シーケンスの各要素に対して変換関数を呼び出し、null 許容の <see cref="T:System.Double" /> の最小値を返します。</summary>
1115       <returns>シーケンスの最小値に対応する Nullable&lt;Double&gt; 型 (C# の場合) または Nullable(Of Double) 型 (Visual Basic の場合) の値。</returns>
1116       <param name="source">最小値を確認する対象となる値のシーケンス。</param>
1117       <param name="selector">各要素に適用する変換関数。</param>
1118       <typeparam name="TSource">
1119         <paramref name="source" /> の要素の型。</typeparam>
1120       <exception cref="T:System.ArgumentNullException">
1121         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1122     </member>
1123     <member name="M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int32}})">
1124       <summary>シーケンスの各要素に対して変換関数を呼び出し、null 許容の <see cref="T:System.Int32" /> の最小値を返します。</summary>
1125       <returns>シーケンスの最小値に対応する Nullable&lt;Int32&gt; 型 (C# の場合) または Nullable(Of Int32) 型 (Visual Basic の場合) の値。</returns>
1126       <param name="source">最小値を確認する対象となる値のシーケンス。</param>
1127       <param name="selector">各要素に適用する変換関数。</param>
1128       <typeparam name="TSource">
1129         <paramref name="source" /> の要素の型。</typeparam>
1130       <exception cref="T:System.ArgumentNullException">
1131         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1132     </member>
1133     <member name="M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int64}})">
1134       <summary>シーケンスの各要素に対して変換関数を呼び出し、null 許容の <see cref="T:System.Int64" /> の最小値を返します。</summary>
1135       <returns>シーケンスの最小値に対応する Nullable&lt;Int64&gt; 型 (C# の場合) または Nullable(Of Int64) 型 (Visual Basic の場合) の値。</returns>
1136       <param name="source">最小値を確認する対象となる値のシーケンス。</param>
1137       <param name="selector">各要素に適用する変換関数。</param>
1138       <typeparam name="TSource">
1139         <paramref name="source" /> の要素の型。</typeparam>
1140       <exception cref="T:System.ArgumentNullException">
1141         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1142     </member>
1143     <member name="M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Single}})">
1144       <summary>シーケンスの各要素に対して変換関数を呼び出し、null 許容の <see cref="T:System.Single" /> の最小値を返します。</summary>
1145       <returns>シーケンスの最小値に対応する Nullable&lt;Single&gt; 型 (C# の場合) または Nullable(Of Single) 型 (Visual Basic の場合) の値。</returns>
1146       <param name="source">最小値を確認する対象となる値のシーケンス。</param>
1147       <param name="selector">各要素に適用する変換関数。</param>
1148       <typeparam name="TSource">
1149         <paramref name="source" /> の要素の型。</typeparam>
1150       <exception cref="T:System.ArgumentNullException">
1151         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1152     </member>
1153     <member name="M:System.Linq.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Single})">
1154       <summary>シーケンスの各要素に対して変換関数を呼び出し、<see cref="T:System.Single" /> の最小値を返します。</summary>
1155       <returns>シーケンスの最小値。</returns>
1156       <param name="source">最小値を確認する対象となる値のシーケンス。</param>
1157       <param name="selector">各要素に適用する変換関数。</param>
1158       <typeparam name="TSource">
1159         <paramref name="source" /> の要素の型。</typeparam>
1160       <exception cref="T:System.ArgumentNullException">
1161         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1162       <exception cref="T:System.InvalidOperationException">
1163         <paramref name="source" /> に要素が含まれていません。</exception>
1164     </member>
1165     <member name="M:System.Linq.Enumerable.Min``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})">
1166       <summary>ジェネリック シーケンスの各要素に対して変換関数を呼び出し、結果の最小値を返します。</summary>
1167       <returns>シーケンスの最小値。</returns>
1168       <param name="source">最小値を確認する対象となる値のシーケンス。</param>
1169       <param name="selector">各要素に適用する変換関数。</param>
1170       <typeparam name="TSource">
1171         <paramref name="source" /> の要素の型。</typeparam>
1172       <typeparam name="TResult">
1173         <paramref name="selector" /> によって返される値の型。</typeparam>
1174       <exception cref="T:System.ArgumentNullException">
1175         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1176     </member>
1177     <member name="M:System.Linq.Enumerable.OfType``1(System.Collections.IEnumerable)">
1178       <summary>指定された型に基づいて <see cref="T:System.Collections.IEnumerable" /> の要素をフィルター処理します。</summary>
1179       <returns>
1180         <paramref name="TResult" /> 型の入力シーケンスの要素を格納する <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1181       <param name="source">フィルター処理する要素を含む <see cref="T:System.Collections.IEnumerable" />。</param>
1182       <typeparam name="TResult">シーケンスの要素をフィルター処理する型。</typeparam>
1183       <exception cref="T:System.ArgumentNullException">
1184         <paramref name="source" /> は null なので、</exception>
1185     </member>
1186     <member name="M:System.Linq.Enumerable.OrderBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})">
1187       <summary>シーケンスの要素をキーに従って昇順に並べ替えます。</summary>
1188       <returns>要素がキーに従って並べ替えられている <see cref="T:System.Linq.IOrderedEnumerable`1" />。</returns>
1189       <param name="source">順序付ける値のシーケンス。</param>
1190       <param name="keySelector">要素からキーを抽出する関数。</param>
1191       <typeparam name="TSource">
1192         <paramref name="source" /> の要素の型。</typeparam>
1193       <typeparam name="TKey">
1194         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
1195       <exception cref="T:System.ArgumentNullException">
1196         <paramref name="source" /> または <paramref name="keySelector" /> が null です。</exception>
1197     </member>
1198     <member name="M:System.Linq.Enumerable.OrderBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
1199       <summary>指定された比較子を使用してシーケンスの要素を昇順に並べ替えます。</summary>
1200       <returns>要素がキーに従って並べ替えられている <see cref="T:System.Linq.IOrderedEnumerable`1" />。</returns>
1201       <param name="source">順序付ける値のシーケンス。</param>
1202       <param name="keySelector">要素からキーを抽出する関数。</param>
1203       <param name="comparer">キーを比較する <see cref="T:System.Collections.Generic.IComparer`1" />。</param>
1204       <typeparam name="TSource">
1205         <paramref name="source" /> の要素の型。</typeparam>
1206       <typeparam name="TKey">
1207         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
1208       <exception cref="T:System.ArgumentNullException">
1209         <paramref name="source" /> または <paramref name="keySelector" /> が null です。</exception>
1210     </member>
1211     <member name="M:System.Linq.Enumerable.OrderByDescending``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})">
1212       <summary>シーケンスの要素をキーに従って降順に並べ替えます。</summary>
1213       <returns>要素がキーに従って降順に並べ替えられている <see cref="T:System.Linq.IOrderedEnumerable`1" />。</returns>
1214       <param name="source">順序付ける値のシーケンス。</param>
1215       <param name="keySelector">要素からキーを抽出する関数。</param>
1216       <typeparam name="TSource">
1217         <paramref name="source" /> の要素の型。</typeparam>
1218       <typeparam name="TKey">
1219         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
1220       <exception cref="T:System.ArgumentNullException">
1221         <paramref name="source" /> または <paramref name="keySelector" /> が null です。</exception>
1222     </member>
1223     <member name="M:System.Linq.Enumerable.OrderByDescending``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
1224       <summary>指定された比較子を使用してシーケンスの要素を降順に並べ替えます。</summary>
1225       <returns>要素がキーに従って降順に並べ替えられている <see cref="T:System.Linq.IOrderedEnumerable`1" />。</returns>
1226       <param name="source">順序付ける値のシーケンス。</param>
1227       <param name="keySelector">要素からキーを抽出する関数。</param>
1228       <param name="comparer">キーを比較する <see cref="T:System.Collections.Generic.IComparer`1" />。</param>
1229       <typeparam name="TSource">
1230         <paramref name="source" /> の要素の型。</typeparam>
1231       <typeparam name="TKey">
1232         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
1233       <exception cref="T:System.ArgumentNullException">
1234         <paramref name="source" /> または <paramref name="keySelector" /> が null です。</exception>
1235     </member>
1236     <member name="M:System.Linq.Enumerable.Range(System.Int32,System.Int32)">
1237       <summary>指定した範囲内の整数のシーケンスを生成します。</summary>
1238       <returns>連続した整数の範囲を含む IEnumerable&lt;Int32&gt; (C# の場合) または IEnumerable(Of Int32) (Visual Basic の場合)。</returns>
1239       <param name="start">シーケンス内の最初の整数の値。</param>
1240       <param name="count">生成する連続した整数の数。</param>
1241       <exception cref="T:System.ArgumentOutOfRangeException">
1242         <paramref name="count" /> が 0 未満です。または<paramref name="start" /> + <paramref name="count" /> -1 が <see cref="F:System.Int32.MaxValue" /> を超えています。</exception>
1243     </member>
1244     <member name="M:System.Linq.Enumerable.Repeat``1(``0,System.Int32)">
1245       <summary>繰り返される 1 つの値を含むシーケンスを生成します。</summary>
1246       <returns>繰り返される値を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1247       <param name="element">繰り返される値。</param>
1248       <param name="count">生成されたシーケンスで値を繰り返す回数。</param>
1249       <typeparam name="TResult">結果のシーケンスで繰り返される値の型。</typeparam>
1250       <exception cref="T:System.ArgumentOutOfRangeException">
1251         <paramref name="count" /> が 0 未満です。</exception>
1252     </member>
1253     <member name="M:System.Linq.Enumerable.Reverse``1(System.Collections.Generic.IEnumerable{``0})">
1254       <summary>シーケンスの要素の順序を反転させます。</summary>
1255       <returns>要素が入力シーケンスの要素に逆順で対応しているシーケンス。</returns>
1256       <param name="source">反転させる値のシーケンス。</param>
1257       <typeparam name="TSource">
1258         <paramref name="source" /> の要素の型。</typeparam>
1259       <exception cref="T:System.ArgumentNullException">
1260         <paramref name="source" /> は null なので、</exception>
1261     </member>
1262     <member name="M:System.Linq.Enumerable.Select``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})">
1263       <summary>シーケンスの各要素を新しいフォームに射影します。</summary>
1264       <returns>
1265         <paramref name="source" /> の各要素に対して変換関数を呼び出した結果として得られる要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1266       <param name="source">変換関数を呼び出す対象となる値のシーケンス。</param>
1267       <param name="selector">各要素に適用する変換関数。</param>
1268       <typeparam name="TSource">
1269         <paramref name="source" /> の要素の型。</typeparam>
1270       <typeparam name="TResult">
1271         <paramref name="selector" /> によって返される値の型。</typeparam>
1272       <exception cref="T:System.ArgumentNullException">
1273         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1274     </member>
1275     <member name="M:System.Linq.Enumerable.Select``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,``1})">
1276       <summary>要素のインデックスを組み込むことにより、シーケンスの各要素を新しいフォームに射影します。</summary>
1277       <returns>
1278         <paramref name="source" /> の各要素に対して変換関数を呼び出した結果として得られる要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1279       <param name="source">変換関数を呼び出す対象となる値のシーケンス。</param>
1280       <param name="selector">各ソース要素に適用する変換関数。この関数の 2 つ目のパラメーターは、ソース要素のインデックスを表します。</param>
1281       <typeparam name="TSource">
1282         <paramref name="source" /> の要素の型。</typeparam>
1283       <typeparam name="TResult">
1284         <paramref name="selector" /> によって返される値の型。</typeparam>
1285       <exception cref="T:System.ArgumentNullException">
1286         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1287     </member>
1288     <member name="M:System.Linq.Enumerable.SelectMany``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Collections.Generic.IEnumerable{``1}},System.Func{``0,``1,``2})">
1289       <summary>シーケンスの各要素を <see cref="T:System.Collections.Generic.IEnumerable`1" /> に射影し、結果のシーケンスを 1 つのシーケンスに平坦化して、その各要素に対して結果のセレクター関数を呼び出します。</summary>
1290       <returns>
1291         <paramref name="source" /> の各要素で一対多の変換関数 <paramref name="collectionSelector" /> を呼び出し、こうしたシーケンスの各要素とそれに対応するソース要素を結果の要素に割り当てた結果として得られる要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1292       <param name="source">射影する値のシーケンス。</param>
1293       <param name="collectionSelector">入力シーケンスの各要素に適用する変換関数。</param>
1294       <param name="resultSelector">中間シーケンスの各要素に適用する変換関数。</param>
1295       <typeparam name="TSource">
1296         <paramref name="source" /> の要素の型。</typeparam>
1297       <typeparam name="TCollection">
1298         <paramref name="collectionSelector" /> によって収集される中間要素の型。</typeparam>
1299       <typeparam name="TResult">結果のシーケンスの要素の型。</typeparam>
1300       <exception cref="T:System.ArgumentNullException">
1301         <paramref name="source" />、<paramref name="collectionSelector" />、または <paramref name="resultSelector" /> が null です。</exception>
1302     </member>
1303     <member name="M:System.Linq.Enumerable.SelectMany``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Collections.Generic.IEnumerable{``1}})">
1304       <summary>シーケンスの各要素を <see cref="T:System.Collections.Generic.IEnumerable`1" /> に射影し、結果のシーケンスを 1 つのシーケンスに平坦化します。</summary>
1305       <returns>入力シーケンスの各要素に対して一対多の変換関数を呼び出した結果として得られる要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1306       <param name="source">射影する値のシーケンス。</param>
1307       <param name="selector">各要素に適用する変換関数。</param>
1308       <typeparam name="TSource">
1309         <paramref name="source" /> の要素の型。</typeparam>
1310       <typeparam name="TResult">
1311         <paramref name="selector" /> によって返されるシーケンスの要素の型。</typeparam>
1312       <exception cref="T:System.ArgumentNullException">
1313         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1314     </member>
1315     <member name="M:System.Linq.Enumerable.SelectMany``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}},System.Func{``0,``1,``2})">
1316       <summary>シーケンスの各要素を <see cref="T:System.Collections.Generic.IEnumerable`1" /> に射影し、結果のシーケンスを 1 つのシーケンスに平坦化して、その各要素に対して結果のセレクター関数を呼び出します。各ソース要素のインデックスは、その要素の中間の射影されたフォームで使用されます。</summary>
1317       <returns>
1318         <paramref name="source" /> の各要素で一対多の変換関数 <paramref name="collectionSelector" /> を呼び出し、こうしたシーケンスの各要素とそれに対応するソース要素を結果の要素に割り当てた結果として得られる要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1319       <param name="source">射影する値のシーケンス。</param>
1320       <param name="collectionSelector">各ソース要素に適用する変換関数。この関数の 2 つ目のパラメーターは、ソース要素のインデックスを表します。</param>
1321       <param name="resultSelector">中間シーケンスの各要素に適用する変換関数。</param>
1322       <typeparam name="TSource">
1323         <paramref name="source" /> の要素の型。</typeparam>
1324       <typeparam name="TCollection">
1325         <paramref name="collectionSelector" /> によって収集される中間要素の型。</typeparam>
1326       <typeparam name="TResult">結果のシーケンスの要素の型。</typeparam>
1327       <exception cref="T:System.ArgumentNullException">
1328         <paramref name="source" />、<paramref name="collectionSelector" />、または <paramref name="resultSelector" /> が null です。</exception>
1329     </member>
1330     <member name="M:System.Linq.Enumerable.SelectMany``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}})">
1331       <summary>シーケンスの各要素を <see cref="T:System.Collections.Generic.IEnumerable`1" /> に射影し、結果のシーケンスを 1 つのシーケンスに平坦化します。各ソース要素のインデックスは、その要素の射影されたフォームで使用されます。</summary>
1332       <returns>入力シーケンスの各要素に対して一対多の変換関数を呼び出した結果として得られる要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1333       <param name="source">射影する値のシーケンス。</param>
1334       <param name="selector">各ソース要素に適用する変換関数。この関数の 2 つ目のパラメーターは、ソース要素のインデックスを表します。</param>
1335       <typeparam name="TSource">
1336         <paramref name="source" /> の要素の型。</typeparam>
1337       <typeparam name="TResult">
1338         <paramref name="selector" /> によって返されるシーケンスの要素の型。</typeparam>
1339       <exception cref="T:System.ArgumentNullException">
1340         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1341     </member>
1342     <member name="M:System.Linq.Enumerable.SequenceEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
1343       <summary>要素の型に対して既定の等値比較子を使用して要素を比較することで、2 つのシーケンスが等しいかどうかを判断します。</summary>
1344       <returns>2 つのソース シーケンスが同じ長さで、それらに対応する要素がその型の既定の等値比較子に従って等しい場合は true。それ以外の場合は false。</returns>
1345       <param name="first">
1346         <paramref name="second" /> と比較する <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1347       <param name="second">最初のシーケンスと比較する <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1348       <typeparam name="TSource">入力シーケンスの要素の型。</typeparam>
1349       <exception cref="T:System.ArgumentNullException">
1350         <paramref name="first" /> または <paramref name="second" /> が null です。</exception>
1351     </member>
1352     <member name="M:System.Linq.Enumerable.SequenceEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
1353       <summary>指定された <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> を使用して要素を比較することで、2 つのシーケンスが等しいかどうかを判断します。</summary>
1354       <returns>2 つのソース シーケンスが同じ長さで、<paramref name="comparer" /> に従ってそれらに対応する要素が等しい場合は true。それ以外の場合は false。</returns>
1355       <param name="first">
1356         <paramref name="second" /> と比較する <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1357       <param name="second">最初のシーケンスと比較する <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1358       <param name="comparer">要素の比較に使用する <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
1359       <typeparam name="TSource">入力シーケンスの要素の型。</typeparam>
1360       <exception cref="T:System.ArgumentNullException">
1361         <paramref name="first" /> または <paramref name="second" /> が null です。</exception>
1362     </member>
1363     <member name="M:System.Linq.Enumerable.Single``1(System.Collections.Generic.IEnumerable{``0})">
1364       <summary>シーケンスの唯一の要素を返します。シーケンス内の要素が 1 つだけではない場合は、例外をスローします。</summary>
1365       <returns>入力シーケンスの 1 つの要素。</returns>
1366       <param name="source">1 つの要素を返す <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1367       <typeparam name="TSource">
1368         <paramref name="source" /> の要素の型。</typeparam>
1369       <exception cref="T:System.ArgumentNullException">
1370         <paramref name="source" /> は null なので、</exception>
1371       <exception cref="T:System.InvalidOperationException">入力シーケンスに複数の要素が含まれています。または入力シーケンスが空です。</exception>
1372     </member>
1373     <member name="M:System.Linq.Enumerable.Single``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})">
1374       <summary>指定された条件を満たす、シーケンスの唯一の要素を返します。そのような要素が複数存在する場合は、例外をスローします。</summary>
1375       <returns>条件を満たす、入力シーケンスの 1 つの要素。</returns>
1376       <param name="source">1 つの要素を返す <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1377       <param name="predicate">要素が条件を満たしているかどうかをテストする関数。</param>
1378       <typeparam name="TSource">
1379         <paramref name="source" /> の要素の型。</typeparam>
1380       <exception cref="T:System.ArgumentNullException">
1381         <paramref name="source" /> または <paramref name="predicate" /> が null です。</exception>
1382       <exception cref="T:System.InvalidOperationException">
1383         <paramref name="predicate" /> の条件を満たす要素がありません。または<paramref name="predicate" /> の条件を満たす要素が複数あります。またはソース シーケンスが空です。</exception>
1384     </member>
1385     <member name="M:System.Linq.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0})">
1386       <summary>シーケンスの唯一の要素を返します。シーケンスが空の場合、既定値を返します。シーケンス内に要素が複数ある場合、このメソッドは例外をスローします。</summary>
1387       <returns>入力シーケンスの 1 つの要素。シーケンスに要素が含まれない場合は default (<paramref name="TSource" />)。</returns>
1388       <param name="source">1 つの要素を返す <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1389       <typeparam name="TSource">
1390         <paramref name="source" /> の要素の型。</typeparam>
1391       <exception cref="T:System.ArgumentNullException">
1392         <paramref name="source" /> は null なので、</exception>
1393       <exception cref="T:System.InvalidOperationException">入力シーケンスに複数の要素が含まれています。</exception>
1394     </member>
1395     <member name="M:System.Linq.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})">
1396       <summary>指定された条件を満たす、シーケンスの唯一の要素を返します。そのような要素が存在しない場合、既定値を返します。複数の要素が条件を満たす場合、このメソッドは例外をスローします。</summary>
1397       <returns>条件を満たす、入力シーケンスの 1 つの要素。そのような要素が見つからない場合は default (<paramref name="TSource" />)。</returns>
1398       <param name="source">1 つの要素を返す <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1399       <param name="predicate">要素が条件を満たしているかどうかをテストする関数。</param>
1400       <typeparam name="TSource">
1401         <paramref name="source" /> の要素の型。</typeparam>
1402       <exception cref="T:System.ArgumentNullException">
1403         <paramref name="source" /> または <paramref name="predicate" /> が null です。</exception>
1404     </member>
1405     <member name="M:System.Linq.Enumerable.Skip``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
1406       <summary>シーケンス内の指定された数の要素をバイパスし、残りの要素を返します。</summary>
1407       <returns>入力シーケンスで指定されたインデックスの後に出現する要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1408       <param name="source">返される要素が含まれる <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1409       <param name="count">残りの要素を返す前にスキップする要素の数。</param>
1410       <typeparam name="TSource">
1411         <paramref name="source" /> の要素の型。</typeparam>
1412       <exception cref="T:System.ArgumentNullException">
1413         <paramref name="source" /> は null なので、</exception>
1414     </member>
1415     <member name="M:System.Linq.Enumerable.SkipWhile``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})">
1416       <summary>指定された条件が満たされる限り、シーケンスの要素をバイパスした後、残りの要素を返します。</summary>
1417       <returns>
1418         <paramref name="predicate" /> で指定されたテストに合格しない連続する最初の要素から入力シーケンスの要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1419       <param name="source">返される要素が含まれる <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1420       <param name="predicate">各要素が条件を満たしているかどうかをテストする関数。</param>
1421       <typeparam name="TSource">
1422         <paramref name="source" /> の要素の型。</typeparam>
1423       <exception cref="T:System.ArgumentNullException">
1424         <paramref name="source" /> または <paramref name="predicate" /> が null です。</exception>
1425     </member>
1426     <member name="M:System.Linq.Enumerable.SkipWhile``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,System.Boolean})">
1427       <summary>指定された条件が満たされる限り、シーケンスの要素をバイパスした後、残りの要素を返します。要素のインデックスは、述語関数のロジックで使用されます。</summary>
1428       <returns>
1429         <paramref name="predicate" /> で指定されたテストに合格しない連続する最初の要素から入力シーケンスの要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1430       <param name="source">返される要素が含まれる <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1431       <param name="predicate">各ソース要素が条件に当てはまるかどうかをテストする関数。この関数の 2 つ目のパラメーターは、ソース要素のインデックスを表します。</param>
1432       <typeparam name="TSource">
1433         <paramref name="source" /> の要素の型。</typeparam>
1434       <exception cref="T:System.ArgumentNullException">
1435         <paramref name="source" /> または <paramref name="predicate" /> が null です。</exception>
1436     </member>
1437     <member name="M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Decimal})">
1438       <summary>
1439         <see cref="T:System.Decimal" /> 値のシーケンスの合計を計算します。</summary>
1440       <returns>シーケンスの値の合計。</returns>
1441       <param name="source">合計を計算する対象となる <see cref="T:System.Decimal" /> 値のシーケンス。</param>
1442       <exception cref="T:System.ArgumentNullException">
1443         <paramref name="source" /> は null なので、</exception>
1444       <exception cref="T:System.OverflowException">合計が <see cref="F:System.Decimal.MaxValue" /> を超えています。</exception>
1445     </member>
1446     <member name="M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Double})">
1447       <summary>
1448         <see cref="T:System.Double" /> 値のシーケンスの合計を計算します。</summary>
1449       <returns>シーケンスの値の合計。</returns>
1450       <param name="source">合計を計算する対象となる <see cref="T:System.Double" /> 値のシーケンス。</param>
1451       <exception cref="T:System.ArgumentNullException">
1452         <paramref name="source" /> は null なので、</exception>
1453     </member>
1454     <member name="M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Int32})">
1455       <summary>
1456         <see cref="T:System.Int32" /> 値のシーケンスの合計を計算します。</summary>
1457       <returns>シーケンスの値の合計。</returns>
1458       <param name="source">合計を計算する対象となる <see cref="T:System.Int32" /> 値のシーケンス。</param>
1459       <exception cref="T:System.ArgumentNullException">
1460         <paramref name="source" /> は null なので、</exception>
1461       <exception cref="T:System.OverflowException">合計が <see cref="F:System.Int32.MaxValue" /> を超えています。</exception>
1462     </member>
1463     <member name="M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Int64})">
1464       <summary>
1465         <see cref="T:System.Int64" /> 値のシーケンスの合計を計算します。</summary>
1466       <returns>シーケンスの値の合計。</returns>
1467       <param name="source">合計を計算する対象となる <see cref="T:System.Int64" /> 値のシーケンス。</param>
1468       <exception cref="T:System.ArgumentNullException">
1469         <paramref name="source" /> は null なので、</exception>
1470       <exception cref="T:System.OverflowException">合計が <see cref="F:System.Int64.MaxValue" /> を超えています。</exception>
1471     </member>
1472     <member name="M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">
1473       <summary>null 許容の <see cref="T:System.Decimal" /> 値のシーケンスの合計を計算します。</summary>
1474       <returns>シーケンスの値の合計。</returns>
1475       <param name="source">合計を計算する対象となる null 許容の <see cref="T:System.Decimal" /> 値のシーケンス。</param>
1476       <exception cref="T:System.ArgumentNullException">
1477         <paramref name="source" /> は null なので、</exception>
1478       <exception cref="T:System.OverflowException">合計が <see cref="F:System.Decimal.MaxValue" /> を超えています。</exception>
1479     </member>
1480     <member name="M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">
1481       <summary>null 許容の <see cref="T:System.Double" /> 値のシーケンスの合計を計算します。</summary>
1482       <returns>シーケンスの値の合計。</returns>
1483       <param name="source">合計を計算する対象となる null 許容の <see cref="T:System.Double" /> 値のシーケンス。</param>
1484       <exception cref="T:System.ArgumentNullException">
1485         <paramref name="source" /> は null なので、</exception>
1486     </member>
1487     <member name="M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
1488       <summary>null 許容の <see cref="T:System.Int32" /> 値のシーケンスの合計を計算します。</summary>
1489       <returns>シーケンスの値の合計。</returns>
1490       <param name="source">合計を計算する対象となる null 許容の <see cref="T:System.Int32" /> 値のシーケンス。</param>
1491       <exception cref="T:System.ArgumentNullException">
1492         <paramref name="source" /> は null なので、</exception>
1493       <exception cref="T:System.OverflowException">合計が <see cref="F:System.Int32.MaxValue" /> を超えています。</exception>
1494     </member>
1495     <member name="M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">
1496       <summary>null 許容の <see cref="T:System.Int64" /> 値のシーケンスの合計を計算します。</summary>
1497       <returns>シーケンスの値の合計。</returns>
1498       <param name="source">合計を計算する対象となる null 許容の <see cref="T:System.Int64" /> 値のシーケンス。</param>
1499       <exception cref="T:System.ArgumentNullException">
1500         <paramref name="source" /> は null なので、</exception>
1501       <exception cref="T:System.OverflowException">合計が <see cref="F:System.Int64.MaxValue" /> を超えています。</exception>
1502     </member>
1503     <member name="M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">
1504       <summary>null 許容の <see cref="T:System.Single" /> 値のシーケンスの合計を計算します。</summary>
1505       <returns>シーケンスの値の合計。</returns>
1506       <param name="source">合計を計算する対象となる null 許容の <see cref="T:System.Single" /> 値のシーケンス。</param>
1507       <exception cref="T:System.ArgumentNullException">
1508         <paramref name="source" /> は null なので、</exception>
1509     </member>
1510     <member name="M:System.Linq.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Single})">
1511       <summary>
1512         <see cref="T:System.Single" /> 値のシーケンスの合計を計算します。</summary>
1513       <returns>シーケンスの値の合計。</returns>
1514       <param name="source">合計を計算する対象となる <see cref="T:System.Single" /> 値のシーケンス。</param>
1515       <exception cref="T:System.ArgumentNullException">
1516         <paramref name="source" /> は null なので、</exception>
1517     </member>
1518     <member name="M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Decimal})">
1519       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する <see cref="T:System.Decimal" /> 値のシーケンスの合計を計算します。</summary>
1520       <returns>射影された値の合計。</returns>
1521       <param name="source">合計の計算に使用される値のシーケンス。</param>
1522       <param name="selector">各要素に適用する変換関数。</param>
1523       <typeparam name="TSource">
1524         <paramref name="source" /> の要素の型。</typeparam>
1525       <exception cref="T:System.ArgumentNullException">
1526         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1527       <exception cref="T:System.OverflowException">合計が <see cref="F:System.Decimal.MaxValue" /> を超えています。</exception>
1528     </member>
1529     <member name="M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Double})">
1530       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する <see cref="T:System.Double" /> 値のシーケンスの合計を計算します。</summary>
1531       <returns>射影された値の合計。</returns>
1532       <param name="source">合計の計算に使用される値のシーケンス。</param>
1533       <param name="selector">各要素に適用する変換関数。</param>
1534       <typeparam name="TSource">
1535         <paramref name="source" /> の要素の型。</typeparam>
1536       <exception cref="T:System.ArgumentNullException">
1537         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1538     </member>
1539     <member name="M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32})">
1540       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する <see cref="T:System.Int32" /> 値のシーケンスの合計を計算します。</summary>
1541       <returns>射影された値の合計。</returns>
1542       <param name="source">合計の計算に使用される値のシーケンス。</param>
1543       <param name="selector">各要素に適用する変換関数。</param>
1544       <typeparam name="TSource">
1545         <paramref name="source" /> の要素の型。</typeparam>
1546       <exception cref="T:System.ArgumentNullException">
1547         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1548       <exception cref="T:System.OverflowException">合計が <see cref="F:System.Int32.MaxValue" /> を超えています。</exception>
1549     </member>
1550     <member name="M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int64})">
1551       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する <see cref="T:System.Int64" /> 値のシーケンスの合計を計算します。</summary>
1552       <returns>射影された値の合計。</returns>
1553       <param name="source">合計の計算に使用される値のシーケンス。</param>
1554       <param name="selector">各要素に適用する変換関数。</param>
1555       <typeparam name="TSource">
1556         <paramref name="source" /> の要素の型。</typeparam>
1557       <exception cref="T:System.ArgumentNullException">
1558         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1559       <exception cref="T:System.OverflowException">合計が <see cref="F:System.Int64.MaxValue" /> を超えています。</exception>
1560     </member>
1561     <member name="M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Decimal}})">
1562       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する null 許容の <see cref="T:System.Decimal" /> 値のシーケンスの合計を計算します。</summary>
1563       <returns>射影された値の合計。</returns>
1564       <param name="source">合計の計算に使用される値のシーケンス。</param>
1565       <param name="selector">各要素に適用する変換関数。</param>
1566       <typeparam name="TSource">
1567         <paramref name="source" /> の要素の型。</typeparam>
1568       <exception cref="T:System.ArgumentNullException">
1569         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1570       <exception cref="T:System.OverflowException">合計が <see cref="F:System.Decimal.MaxValue" /> を超えています。</exception>
1571     </member>
1572     <member name="M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Double}})">
1573       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する null 許容の <see cref="T:System.Double" /> 値のシーケンスの合計を計算します。</summary>
1574       <returns>射影された値の合計。</returns>
1575       <param name="source">合計の計算に使用される値のシーケンス。</param>
1576       <param name="selector">各要素に適用する変換関数。</param>
1577       <typeparam name="TSource">
1578         <paramref name="source" /> の要素の型。</typeparam>
1579       <exception cref="T:System.ArgumentNullException">
1580         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1581     </member>
1582     <member name="M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int32}})">
1583       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する null 許容の <see cref="T:System.Int32" /> 値のシーケンスの合計を計算します。</summary>
1584       <returns>射影された値の合計。</returns>
1585       <param name="source">合計の計算に使用される値のシーケンス。</param>
1586       <param name="selector">各要素に適用する変換関数。</param>
1587       <typeparam name="TSource">
1588         <paramref name="source" /> の要素の型。</typeparam>
1589       <exception cref="T:System.ArgumentNullException">
1590         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1591       <exception cref="T:System.OverflowException">合計が <see cref="F:System.Int32.MaxValue" /> を超えています。</exception>
1592     </member>
1593     <member name="M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Int64}})">
1594       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する null 許容の <see cref="T:System.Int64" /> 値のシーケンスの合計を計算します。</summary>
1595       <returns>射影された値の合計。</returns>
1596       <param name="source">合計の計算に使用される値のシーケンス。</param>
1597       <param name="selector">各要素に適用する変換関数。</param>
1598       <typeparam name="TSource">
1599         <paramref name="source" /> の要素の型。</typeparam>
1600       <exception cref="T:System.ArgumentNullException">
1601         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1602       <exception cref="T:System.OverflowException">合計が <see cref="F:System.Int64.MaxValue" /> を超えています。</exception>
1603     </member>
1604     <member name="M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Nullable{System.Single}})">
1605       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する null 許容の <see cref="T:System.Single" /> 値のシーケンスの合計を計算します。</summary>
1606       <returns>射影された値の合計。</returns>
1607       <param name="source">合計の計算に使用される値のシーケンス。</param>
1608       <param name="selector">各要素に適用する変換関数。</param>
1609       <typeparam name="TSource">
1610         <paramref name="source" /> の要素の型。</typeparam>
1611       <exception cref="T:System.ArgumentNullException">
1612         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1613     </member>
1614     <member name="M:System.Linq.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Single})">
1615       <summary>入力シーケンスの各要素に対して変換関数を呼び出して取得する <see cref="T:System.Single" /> 値のシーケンスの合計を計算します。</summary>
1616       <returns>射影された値の合計。</returns>
1617       <param name="source">合計の計算に使用される値のシーケンス。</param>
1618       <param name="selector">各要素に適用する変換関数。</param>
1619       <typeparam name="TSource">
1620         <paramref name="source" /> の要素の型。</typeparam>
1621       <exception cref="T:System.ArgumentNullException">
1622         <paramref name="source" /> または <paramref name="selector" /> が null です。</exception>
1623     </member>
1624     <member name="M:System.Linq.Enumerable.Take``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
1625       <summary>シーケンスの先頭から、指定された数の連続する要素を返します。</summary>
1626       <returns>入力シーケンスの先頭から、指定された数の要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1627       <param name="source">要素を返すシーケンス。</param>
1628       <param name="count">返す要素数。</param>
1629       <typeparam name="TSource">
1630         <paramref name="source" /> の要素の型。</typeparam>
1631       <exception cref="T:System.ArgumentNullException">
1632         <paramref name="source" /> は null なので、</exception>
1633     </member>
1634     <member name="M:System.Linq.Enumerable.TakeWhile``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})">
1635       <summary>指定された条件が満たされる限り、シーケンスから要素を返します。</summary>
1636       <returns>テストに合格しなくなった要素の前に出現する、入力シーケンスの要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1637       <param name="source">要素を返すシーケンス。</param>
1638       <param name="predicate">各要素が条件を満たしているかどうかをテストする関数。</param>
1639       <typeparam name="TSource">
1640         <paramref name="source" /> の要素の型。</typeparam>
1641       <exception cref="T:System.ArgumentNullException">
1642         <paramref name="source" /> または <paramref name="predicate" /> が null です。</exception>
1643     </member>
1644     <member name="M:System.Linq.Enumerable.TakeWhile``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,System.Boolean})">
1645       <summary>指定された条件が満たされる限り、シーケンスから要素を返します。要素のインデックスは、述語関数のロジックで使用されます。</summary>
1646       <returns>テストに合格しなくなった要素の前に出現する、入力シーケンスの要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1647       <param name="source">要素を返すシーケンス。</param>
1648       <param name="predicate">各ソース要素が条件に当てはまるかどうかをテストする関数。この関数の 2 つ目のパラメーターは、ソース要素のインデックスを表します。</param>
1649       <typeparam name="TSource">
1650         <paramref name="source" /> の要素の型。</typeparam>
1651       <exception cref="T:System.ArgumentNullException">
1652         <paramref name="source" /> または <paramref name="predicate" /> が null です。</exception>
1653     </member>
1654     <member name="M:System.Linq.Enumerable.ThenBy``2(System.Linq.IOrderedEnumerable{``0},System.Func{``0,``1})">
1655       <summary>キーに従って、シーケンス内の後続の要素を昇順で配置します。</summary>
1656       <returns>要素がキーに従って並べ替えられている <see cref="T:System.Linq.IOrderedEnumerable`1" />。</returns>
1657       <param name="source">並べ替える要素を格納している <see cref="T:System.Linq.IOrderedEnumerable`1" />。</param>
1658       <param name="keySelector">各要素からキーを抽出する関数。</param>
1659       <typeparam name="TSource">
1660         <paramref name="source" /> の要素の型。</typeparam>
1661       <typeparam name="TKey">
1662         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
1663       <exception cref="T:System.ArgumentNullException">
1664         <paramref name="source" /> または <paramref name="keySelector" /> が null です。</exception>
1665     </member>
1666     <member name="M:System.Linq.Enumerable.ThenBy``2(System.Linq.IOrderedEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
1667       <summary>指定された比較子を使用して、シーケンス内の後続の要素を昇順で配置します。</summary>
1668       <returns>要素がキーに従って並べ替えられている <see cref="T:System.Linq.IOrderedEnumerable`1" />。</returns>
1669       <param name="source">並べ替える要素を格納している <see cref="T:System.Linq.IOrderedEnumerable`1" />。</param>
1670       <param name="keySelector">各要素からキーを抽出する関数。</param>
1671       <param name="comparer">キーを比較する <see cref="T:System.Collections.Generic.IComparer`1" />。</param>
1672       <typeparam name="TSource">
1673         <paramref name="source" /> の要素の型。</typeparam>
1674       <typeparam name="TKey">
1675         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
1676       <exception cref="T:System.ArgumentNullException">
1677         <paramref name="source" /> または <paramref name="keySelector" /> が null です。</exception>
1678     </member>
1679     <member name="M:System.Linq.Enumerable.ThenByDescending``2(System.Linq.IOrderedEnumerable{``0},System.Func{``0,``1})">
1680       <summary>キーに従って、シーケンス内の後続の要素を降順で配置します。</summary>
1681       <returns>要素がキーに従って降順に並べ替えられている <see cref="T:System.Linq.IOrderedEnumerable`1" />。</returns>
1682       <param name="source">並べ替える要素を格納している <see cref="T:System.Linq.IOrderedEnumerable`1" />。</param>
1683       <param name="keySelector">各要素からキーを抽出する関数。</param>
1684       <typeparam name="TSource">
1685         <paramref name="source" /> の要素の型。</typeparam>
1686       <typeparam name="TKey">
1687         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
1688       <exception cref="T:System.ArgumentNullException">
1689         <paramref name="source" /> または <paramref name="keySelector" /> が null です。</exception>
1690     </member>
1691     <member name="M:System.Linq.Enumerable.ThenByDescending``2(System.Linq.IOrderedEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})">
1692       <summary>指定された比較子を使用して、シーケンス内の後続の要素を降順で配置します。</summary>
1693       <returns>要素がキーに従って降順に並べ替えられている <see cref="T:System.Linq.IOrderedEnumerable`1" />。</returns>
1694       <param name="source">並べ替える要素を格納している <see cref="T:System.Linq.IOrderedEnumerable`1" />。</param>
1695       <param name="keySelector">各要素からキーを抽出する関数。</param>
1696       <param name="comparer">キーを比較する <see cref="T:System.Collections.Generic.IComparer`1" />。</param>
1697       <typeparam name="TSource">
1698         <paramref name="source" /> の要素の型。</typeparam>
1699       <typeparam name="TKey">
1700         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
1701       <exception cref="T:System.ArgumentNullException">
1702         <paramref name="source" /> または <paramref name="keySelector" /> が null です。</exception>
1703     </member>
1704     <member name="M:System.Linq.Enumerable.ToArray``1(System.Collections.Generic.IEnumerable{``0})">
1705       <summary>
1706         <see cref="T:System.Collections.Generic.IEnumerable`1" /> から配列を作成します。</summary>
1707       <returns>入力シーケンスの要素を含む配列。</returns>
1708       <param name="source">配列の作成元の <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1709       <typeparam name="TSource">
1710         <paramref name="source" /> の要素の型。</typeparam>
1711       <exception cref="T:System.ArgumentNullException">
1712         <paramref name="source" /> は null なので、</exception>
1713     </member>
1714     <member name="M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})">
1715       <summary>指定されたキー セレクター関数に従って、<see cref="T:System.Collections.Generic.IEnumerable`1" /> から <see cref="T:System.Collections.Generic.Dictionary`2" /> を作成します。</summary>
1716       <returns>キーと値を格納している <see cref="T:System.Collections.Generic.Dictionary`2" />。</returns>
1717       <param name="source">
1718         <see cref="T:System.Collections.Generic.Dictionary`2" /> の作成元の <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1719       <param name="keySelector">各要素からキーを抽出する関数。</param>
1720       <typeparam name="TSource">
1721         <paramref name="source" /> の要素の型。</typeparam>
1722       <typeparam name="TKey">
1723         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
1724       <exception cref="T:System.ArgumentNullException">
1725         <paramref name="source" /> または <paramref name="keySelector" /> が null です。または<paramref name="keySelector" /> が null のキーを生成しています。</exception>
1726       <exception cref="T:System.ArgumentException">
1727         <paramref name="keySelector" /> が 2 つの要素に対して重複するキーを生成しています。</exception>
1728     </member>
1729     <member name="M:System.Linq.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
1730       <summary>指定されたキー セレクター関数およびキーの比較子に従って、<see cref="T:System.Collections.Generic.IEnumerable`1" /> から <see cref="T:System.Collections.Generic.Dictionary`2" /> を作成します。</summary>
1731       <returns>キーと値を格納している <see cref="T:System.Collections.Generic.Dictionary`2" />。</returns>
1732       <param name="source">
1733         <see cref="T:System.Collections.Generic.Dictionary`2" /> の作成元の <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1734       <param name="keySelector">各要素からキーを抽出する関数。</param>
1735       <param name="comparer">キーを比較する <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
1736       <typeparam name="TSource">
1737         <paramref name="source" /> の要素の型。</typeparam>
1738       <typeparam name="TKey">
1739         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
1740       <exception cref="T:System.ArgumentNullException">
1741         <paramref name="source" /> または <paramref name="keySelector" /> が null です。または<paramref name="keySelector" /> が null のキーを生成しています。</exception>
1742       <exception cref="T:System.ArgumentException">
1743         <paramref name="keySelector" /> が 2 つの要素に対して重複するキーを生成しています。</exception>
1744     </member>
1745     <member name="M:System.Linq.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2})">
1746       <summary>指定されたキー セレクター関数および要素セレクター関数に従って、<see cref="T:System.Collections.Generic.IEnumerable`1" /> から <see cref="T:System.Collections.Generic.Dictionary`2" /> を作成します。</summary>
1747       <returns>入力シーケンスから選択された <paramref name="TElement" /> 型の値を格納する <see cref="T:System.Collections.Generic.Dictionary`2" />。</returns>
1748       <param name="source">
1749         <see cref="T:System.Collections.Generic.Dictionary`2" /> の作成元の <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1750       <param name="keySelector">各要素からキーを抽出する関数。</param>
1751       <param name="elementSelector">各要素から結果の要素値を生成する変換関数。</param>
1752       <typeparam name="TSource">
1753         <paramref name="source" /> の要素の型。</typeparam>
1754       <typeparam name="TKey">
1755         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
1756       <typeparam name="TElement">
1757         <paramref name="elementSelector" /> によって返される値の型。</typeparam>
1758       <exception cref="T:System.ArgumentNullException">
1759         <paramref name="source" />、<paramref name="keySelector" />、または <paramref name="elementSelector" /> が null です。または<paramref name="keySelector" /> が null のキーを生成しています。</exception>
1760       <exception cref="T:System.ArgumentException">
1761         <paramref name="keySelector" /> が 2 つの要素に対して重複するキーを生成しています。</exception>
1762     </member>
1763     <member name="M:System.Linq.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">
1764       <summary>指定されたキー セレクター関数、比較子、および要素セレクター関数に従って、<see cref="T:System.Collections.Generic.IEnumerable`1" /> から <see cref="T:System.Collections.Generic.Dictionary`2" /> を作成します。</summary>
1765       <returns>入力シーケンスから選択された <paramref name="TElement" /> 型の値を格納する <see cref="T:System.Collections.Generic.Dictionary`2" />。</returns>
1766       <param name="source">
1767         <see cref="T:System.Collections.Generic.Dictionary`2" /> の作成元の <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1768       <param name="keySelector">各要素からキーを抽出する関数。</param>
1769       <param name="elementSelector">各要素から結果の要素値を生成する変換関数。</param>
1770       <param name="comparer">キーを比較する <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
1771       <typeparam name="TSource">
1772         <paramref name="source" /> の要素の型。</typeparam>
1773       <typeparam name="TKey">
1774         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
1775       <typeparam name="TElement">
1776         <paramref name="elementSelector" /> によって返される値の型。</typeparam>
1777       <exception cref="T:System.ArgumentNullException">
1778         <paramref name="source" />、<paramref name="keySelector" />、または <paramref name="elementSelector" /> が null です。または<paramref name="keySelector" /> が null のキーを生成しています。</exception>
1779       <exception cref="T:System.ArgumentException">
1780         <paramref name="keySelector" /> が 2 つの要素に対して重複するキーを生成しています。</exception>
1781     </member>
1782     <member name="M:System.Linq.Enumerable.ToList``1(System.Collections.Generic.IEnumerable{``0})">
1783       <summary>
1784         <see cref="T:System.Collections.Generic.IEnumerable`1" /> から <see cref="T:System.Collections.Generic.List`1" /> を作成します。</summary>
1785       <returns>入力シーケンスの要素を含む <see cref="T:System.Collections.Generic.List`1" />。</returns>
1786       <param name="source">
1787         <see cref="T:System.Collections.Generic.List`1" /> の作成元の <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1788       <typeparam name="TSource">
1789         <paramref name="source" /> の要素の型。</typeparam>
1790       <exception cref="T:System.ArgumentNullException">
1791         <paramref name="source" /> は null なので、</exception>
1792     </member>
1793     <member name="M:System.Linq.Enumerable.ToLookup``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})">
1794       <summary>指定されたキー セレクター関数に従って、<see cref="T:System.Collections.Generic.IEnumerable`1" /> から <see cref="T:System.Linq.Lookup`2" /> を作成します。</summary>
1795       <returns>キーと値を格納している <see cref="T:System.Linq.Lookup`2" />。</returns>
1796       <param name="source">
1797         <see cref="T:System.Linq.Lookup`2" /> の作成元の <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1798       <param name="keySelector">各要素からキーを抽出する関数。</param>
1799       <typeparam name="TSource">
1800         <paramref name="source" /> の要素の型。</typeparam>
1801       <typeparam name="TKey">
1802         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
1803       <exception cref="T:System.ArgumentNullException">
1804         <paramref name="source" /> または <paramref name="keySelector" /> が null です。</exception>
1805     </member>
1806     <member name="M:System.Linq.Enumerable.ToLookup``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">
1807       <summary>指定されたキー セレクター関数およびキーの比較子に従って、<see cref="T:System.Collections.Generic.IEnumerable`1" /> から <see cref="T:System.Linq.Lookup`2" /> を作成します。</summary>
1808       <returns>キーと値を格納している <see cref="T:System.Linq.Lookup`2" />。</returns>
1809       <param name="source">
1810         <see cref="T:System.Linq.Lookup`2" /> の作成元の <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1811       <param name="keySelector">各要素からキーを抽出する関数。</param>
1812       <param name="comparer">キーを比較する <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
1813       <typeparam name="TSource">
1814         <paramref name="source" /> の要素の型。</typeparam>
1815       <typeparam name="TKey">
1816         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
1817       <exception cref="T:System.ArgumentNullException">
1818         <paramref name="source" /> または <paramref name="keySelector" /> が null です。</exception>
1819     </member>
1820     <member name="M:System.Linq.Enumerable.ToLookup``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2})">
1821       <summary>指定されたキー セレクター関数および要素セレクター関数に従って、<see cref="T:System.Collections.Generic.IEnumerable`1" /> から <see cref="T:System.Linq.Lookup`2" /> を作成します。</summary>
1822       <returns>入力シーケンスから選択された <paramref name="TElement" /> 型の値を格納する <see cref="T:System.Linq.Lookup`2" />。</returns>
1823       <param name="source">
1824         <see cref="T:System.Linq.Lookup`2" /> の作成元の <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1825       <param name="keySelector">各要素からキーを抽出する関数。</param>
1826       <param name="elementSelector">各要素から結果の要素値を生成する変換関数。</param>
1827       <typeparam name="TSource">
1828         <paramref name="source" /> の要素の型。</typeparam>
1829       <typeparam name="TKey">
1830         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
1831       <typeparam name="TElement">
1832         <paramref name="elementSelector" /> によって返される値の型。</typeparam>
1833       <exception cref="T:System.ArgumentNullException">
1834         <paramref name="source" />、<paramref name="keySelector" />、または <paramref name="elementSelector" /> が null です。</exception>
1835     </member>
1836     <member name="M:System.Linq.Enumerable.ToLookup``3(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">
1837       <summary>指定されたキー セレクター関数、比較子、および要素セレクター関数に従って、<see cref="T:System.Collections.Generic.IEnumerable`1" /> から <see cref="T:System.Linq.Lookup`2" /> を作成します。</summary>
1838       <returns>入力シーケンスから選択された <paramref name="TElement" /> 型の値を格納する <see cref="T:System.Linq.Lookup`2" />。</returns>
1839       <param name="source">
1840         <see cref="T:System.Linq.Lookup`2" /> の作成元の <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1841       <param name="keySelector">各要素からキーを抽出する関数。</param>
1842       <param name="elementSelector">各要素から結果の要素値を生成する変換関数。</param>
1843       <param name="comparer">キーを比較する <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
1844       <typeparam name="TSource">
1845         <paramref name="source" /> の要素の型。</typeparam>
1846       <typeparam name="TKey">
1847         <paramref name="keySelector" /> によって返されるキーの型。</typeparam>
1848       <typeparam name="TElement">
1849         <paramref name="elementSelector" /> によって返される値の型。</typeparam>
1850       <exception cref="T:System.ArgumentNullException">
1851         <paramref name="source" />、<paramref name="keySelector" />、または <paramref name="elementSelector" /> が null です。</exception>
1852     </member>
1853     <member name="M:System.Linq.Enumerable.Union``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
1854       <summary>既定の等値比較子を使用して、2 つのシーケンスの和集合を生成します。</summary>
1855       <returns>2 つの入力シーケンスの要素 (重複する要素は除く) を格納している <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1856       <param name="first">和集合の最初のセットを形成する一意の要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1857       <param name="second">和集合の 2 番目のセットを形成する一意の要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1858       <typeparam name="TSource">入力シーケンスの要素の型。</typeparam>
1859       <exception cref="T:System.ArgumentNullException">
1860         <paramref name="first" /> または <paramref name="second" /> が null です。</exception>
1861     </member>
1862     <member name="M:System.Linq.Enumerable.Union``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
1863       <summary>指定された <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> を使用して 2 つのシーケンスの和集合を生成します。</summary>
1864       <returns>2 つの入力シーケンスの要素 (重複する要素は除く) を格納している <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1865       <param name="first">和集合の最初のセットを形成する一意の要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1866       <param name="second">和集合の 2 番目のセットを形成する一意の要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1867       <param name="comparer">値を比較する <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</param>
1868       <typeparam name="TSource">入力シーケンスの要素の型。</typeparam>
1869       <exception cref="T:System.ArgumentNullException">
1870         <paramref name="first" /> または <paramref name="second" /> が null です。</exception>
1871     </member>
1872     <member name="M:System.Linq.Enumerable.Where``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})">
1873       <summary>述語に基づいて値のシーケンスをフィルター処理します。</summary>
1874       <returns>条件を満たす、入力シーケンスの要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1875       <param name="source">フィルター処理する <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1876       <param name="predicate">各要素が条件を満たしているかどうかをテストする関数。</param>
1877       <typeparam name="TSource">
1878         <paramref name="source" /> の要素の型。</typeparam>
1879       <exception cref="T:System.ArgumentNullException">
1880         <paramref name="source" /> または <paramref name="predicate" /> が null です。</exception>
1881     </member>
1882     <member name="M:System.Linq.Enumerable.Where``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Int32,System.Boolean})">
1883       <summary>述語に基づいて値のシーケンスをフィルター処理します。各要素のインデックスは、述語関数のロジックで使用されます。</summary>
1884       <returns>条件を満たす、入力シーケンスの要素を含む <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1885       <param name="source">フィルター処理する <see cref="T:System.Collections.Generic.IEnumerable`1" />。</param>
1886       <param name="predicate">各ソース要素が条件に当てはまるかどうかをテストする関数。この関数の 2 つ目のパラメーターは、ソース要素のインデックスを表します。</param>
1887       <typeparam name="TSource">
1888         <paramref name="source" /> の要素の型。</typeparam>
1889       <exception cref="T:System.ArgumentNullException">
1890         <paramref name="source" /> または <paramref name="predicate" /> が null です。</exception>
1891     </member>
1892     <member name="M:System.Linq.Enumerable.Zip``3(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1,``2})">
1893       <summary>2 つのシーケンスの対応する要素に対して、1 つの指定した関数を適用し、結果として 1 つのシーケンスを生成します。</summary>
1894       <returns>2 つの入力シーケンスのマージされた要素が格納されている <see cref="T:System.Collections.Generic.IEnumerable`1" />。</returns>
1895       <param name="first">マージする 1 番目のシーケンス。</param>
1896       <param name="second">マージする 2 番目のシーケンス。</param>
1897       <param name="resultSelector">2 つのシーケンスの要素をマージする方法を指定する関数。</param>
1898       <typeparam name="TFirst">1 番目の入力シーケンスの要素の型。</typeparam>
1899       <typeparam name="TSecond">2 番目の入力シーケンスの要素の型。</typeparam>
1900       <typeparam name="TResult">結果のシーケンスの要素の型。</typeparam>
1901       <exception cref="T:System.ArgumentNullException">
1902         <paramref name="first" /> または <paramref name="second" /> が null です。</exception>
1903     </member>
1904     <member name="T:System.Linq.IGrouping`2">
1905       <summary>共通のキーを持つオブジェクトのコレクションを表します。</summary>
1906       <typeparam name="TKey">
1907         <see cref="T:System.Linq.IGrouping`2" /> のキーの型。このパラメーターが共変の型パラメーターです。つまり、その指定した型を使用するか、それよりも強い任意の派生型を使用することができます。共変性と反変性の詳細については、「ジェネリックの共変性と反変性」を参照してください。</typeparam>
1908       <typeparam name="TElement">
1909         <see cref="T:System.Linq.IGrouping`2" /> 内の値の型。</typeparam>
1910       <filterpriority>2</filterpriority>
1911     </member>
1912     <member name="P:System.Linq.IGrouping`2.Key">
1913       <summary>
1914         <see cref="T:System.Linq.IGrouping`2" /> のキーを取得します。</summary>
1915       <returns>
1916         <see cref="T:System.Linq.IGrouping`2" /> のキー。</returns>
1917     </member>
1918     <member name="T:System.Linq.ILookup`2">
1919       <summary>キーを値の <see cref="T:System.Collections.Generic.IEnumerable`1" /> シーケンスに割り当てるデータ構造のインデクサー、サイズ プロパティ、およびブール値検索メソッドを定義します。</summary>
1920       <typeparam name="TKey">
1921         <see cref="T:System.Linq.ILookup`2" /> 内のキーの型。</typeparam>
1922       <typeparam name="TElement">
1923         <see cref="T:System.Linq.ILookup`2" /> 内の値を構成する <see cref="T:System.Collections.Generic.IEnumerable`1" /> シーケンス内の要素の型。</typeparam>
1924       <filterpriority>2</filterpriority>
1925     </member>
1926     <member name="M:System.Linq.ILookup`2.Contains(`0)">
1927       <summary>指定したキーが <see cref="T:System.Linq.ILookup`2" /> 内に存在するかどうかを判定します。</summary>
1928       <returns>
1929         <paramref name="key" /> が <see cref="T:System.Linq.ILookup`2" /> 内にある場合は true。それ以外の場合は false。</returns>
1930       <param name="key">
1931         <see cref="T:System.Linq.ILookup`2" /> 内で検索するキー。</param>
1932     </member>
1933     <member name="P:System.Linq.ILookup`2.Count">
1934       <summary>
1935         <see cref="T:System.Linq.ILookup`2" /> 内のキーと値コレクションのペアの数を取得します。</summary>
1936       <returns>
1937         <see cref="T:System.Linq.ILookup`2" /> 内のキーと値コレクションのペアの数。</returns>
1938     </member>
1939     <member name="P:System.Linq.ILookup`2.Item(`0)">
1940       <summary>指定したキーによりインデックス付けされた値の <see cref="T:System.Collections.Generic.IEnumerable`1" /> シーケンスを取得します。</summary>
1941       <returns>指定したキーによりインデックス付けされた値の <see cref="T:System.Collections.Generic.IEnumerable`1" /> シーケンス。</returns>
1942       <param name="key">必要な値のシーケンスのキー。</param>
1943     </member>
1944     <member name="T:System.Linq.IOrderedEnumerable`1">
1945       <summary>並べ替えられたシーケンスを表します。</summary>
1946       <typeparam name="TElement">シーケンスの要素の型。</typeparam>
1947       <filterpriority>2</filterpriority>
1948     </member>
1949     <member name="M:System.Linq.IOrderedEnumerable`1.CreateOrderedEnumerable``1(System.Func{`0,``0},System.Collections.Generic.IComparer{``0},System.Boolean)">
1950       <summary>キーに従って <see cref="T:System.Linq.IOrderedEnumerable`1" /> の要素に対して後続の並べ替えを実行します。</summary>
1951       <returns>要素がキーに従って並べ替えられている <see cref="T:System.Linq.IOrderedEnumerable`1" />。</returns>
1952       <param name="keySelector">各要素のキーの抽出に使用される <see cref="T:System.Func`2" />。</param>
1953       <param name="comparer">返されたシーケンスでの配置用のキーの比較に使用される <see cref="T:System.Collections.Generic.IComparer`1" />。</param>
1954       <param name="descending">要素を降順に並べ替える true、要素を昇順に並べ替える false。</param>
1955       <typeparam name="TKey">
1956         <paramref name="keySelector" /> によって生成されるキーの型。</typeparam>
1957       <filterpriority>2</filterpriority>
1958     </member>
1959     <member name="T:System.Linq.Lookup`2">
1960       <summary>それぞれ 1 つ以上の値に割り当てられたキーのコレクションを表します。</summary>
1961       <typeparam name="TKey">
1962         <see cref="T:System.Linq.Lookup`2" /> 内のキーの型。</typeparam>
1963       <typeparam name="TElement">
1964         <see cref="T:System.Linq.Lookup`2" /> 内の各 <see cref="T:System.Collections.Generic.IEnumerable`1" /> 値の要素の型。</typeparam>
1965       <filterpriority>2</filterpriority>
1966     </member>
1967     <member name="M:System.Linq.Lookup`2.ApplyResultSelector``1(System.Func{`0,System.Collections.Generic.IEnumerable{`1},``0})">
1968       <summary>各キーとその関連する値に変換関数を適用し、結果を返します。</summary>
1969       <returns>
1970         <see cref="T:System.Linq.Lookup`2" /> 内にあるキーと値コレクションの各ペアの 1 つの値が格納されるコレクション。</returns>
1971       <param name="resultSelector">各キーとその関連する値からの結果の値を導き出す関数。</param>
1972       <typeparam name="TResult">
1973         <paramref name="resultSelector" /> によって生成される結果の値の型。</typeparam>
1974       <filterpriority>2</filterpriority>
1975     </member>
1976     <member name="M:System.Linq.Lookup`2.Contains(`0)">
1977       <summary>指定したキーが <see cref="T:System.Linq.Lookup`2" /> 内にあるかどうかを確認します。</summary>
1978       <returns>
1979         <paramref name="key" /> が <see cref="T:System.Linq.Lookup`2" /> 内にある場合は true。それ以外の場合は false。</returns>
1980       <param name="key">
1981         <see cref="T:System.Linq.Lookup`2" /> 内で検索するキー。</param>
1982     </member>
1983     <member name="P:System.Linq.Lookup`2.Count">
1984       <summary>
1985         <see cref="T:System.Linq.Lookup`2" /> 内のキーと値コレクションのペアの数を取得します。</summary>
1986       <returns>
1987         <see cref="T:System.Linq.Lookup`2" /> 内のキーと値コレクションのペアの数。</returns>
1988     </member>
1989     <member name="M:System.Linq.Lookup`2.GetEnumerator">
1990       <summary>
1991         <see cref="T:System.Linq.Lookup`2" /> を反復処理するジェネリック列挙子を返します。</summary>
1992       <returns>
1993         <see cref="T:System.Linq.Lookup`2" /> の列挙子。</returns>
1994     </member>
1995     <member name="P:System.Linq.Lookup`2.Item(`0)">
1996       <summary>指定したキーによりインデックス付けされた値のコレクションを取得します。</summary>
1997       <returns>指定したキーによりインデックス付けされた値のコレクション。</returns>
1998       <param name="key">必要な値のコレクションのキー。</param>
1999     </member>
2000     <member name="M:System.Linq.Lookup`2.System#Collections#IEnumerable#GetEnumerator">
2001       <summary>
2002         <see cref="T:System.Linq.Lookup`2" /> を反復処理する列挙子を返します。このクラスは継承できません。</summary>
2003       <returns>
2004         <see cref="T:System.Linq.Lookup`2" /> の列挙子。</returns>
2005     </member>
2006   </members>
2007 </doc>