1<?xml version="1.0" encoding="utf-8"?>
2<doc>
3  <assembly>
4    <name>System.Collections</name>
5  </assembly>
6  <members>
7    <member name="T:System.Collections.BitArray">
8      <summary>ビット値の小型の配列を管理します。このビット値はブール型として表され、true はビットがオン (1)、false はビットがオフ (0) であることを示します。</summary>
9      <filterpriority>2</filterpriority>
10    </member>
11    <member name="M:System.Collections.BitArray.#ctor(System.Boolean[])">
12      <summary>指定したブール値配列からビット値をコピーして格納する、<see cref="T:System.Collections.BitArray" /> クラスの新しいインスタンスを初期化します。</summary>
13      <param name="values">コピーするブール値の配列。</param>
14      <exception cref="T:System.ArgumentNullException">
15        <paramref name="values" /> is null. </exception>
16    </member>
17    <member name="M:System.Collections.BitArray.#ctor(System.Byte[])">
18      <summary>指定したバイト配列からビット値をコピーして格納する、<see cref="T:System.Collections.BitArray" /> クラスの新しいインスタンスを初期化します。</summary>
19      <param name="bytes">コピーする値を格納しているバイト配列。各バイトは 8 個の連続ビットを表します。</param>
20      <exception cref="T:System.ArgumentNullException">
21        <paramref name="bytes" /> is null. </exception>
22      <exception cref="T:System.ArgumentException">The length of <paramref name="bytes" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
23    </member>
24    <member name="M:System.Collections.BitArray.#ctor(System.Collections.BitArray)">
25      <summary>指定した <see cref="T:System.Collections.BitArray" /> からビット値をコピーして格納する、<see cref="T:System.Collections.BitArray" /> クラスの新しいインスタンスを初期化します。</summary>
26      <param name="bits">コピーする <see cref="T:System.Collections.BitArray" />。</param>
27      <exception cref="T:System.ArgumentNullException">
28        <paramref name="bits" /> is null. </exception>
29    </member>
30    <member name="M:System.Collections.BitArray.#ctor(System.Int32)">
31      <summary>指定数のビット値を格納できる、<see cref="T:System.Collections.BitArray" /> クラスの新しいインスタンスを初期化します。ビット値は false に初期設定されます。</summary>
32      <param name="length">新しい <see cref="T:System.Collections.BitArray" /> 内のビット値の数。</param>
33      <exception cref="T:System.ArgumentOutOfRangeException">
34        <paramref name="length" /> is less than zero. </exception>
35    </member>
36    <member name="M:System.Collections.BitArray.#ctor(System.Int32,System.Boolean)">
37      <summary>指定数のビット値を格納できる、<see cref="T:System.Collections.BitArray" /> クラスの新しいインスタンスを初期化します。ビット値は指定値に初期設定されます。</summary>
38      <param name="length">新しい <see cref="T:System.Collections.BitArray" /> 内のビット値の数。</param>
39      <param name="defaultValue">各ビットに代入するブール値。</param>
40      <exception cref="T:System.ArgumentOutOfRangeException">
41        <paramref name="length" /> is less than zero. </exception>
42    </member>
43    <member name="M:System.Collections.BitArray.#ctor(System.Int32[])">
44      <summary>指定した 32 ビット整数配列からビット値をコピーして格納する、<see cref="T:System.Collections.BitArray" /> クラスの新しいインスタンスを初期化します。</summary>
45      <param name="values">コピーする値を格納している整数配列。各整数は 32 個の連続ビットを表します。</param>
46      <exception cref="T:System.ArgumentNullException">
47        <paramref name="values" /> is null. </exception>
48      <exception cref="T:System.ArgumentException">The length of <paramref name="values" /> is greater than <see cref="F:System.Int32.MaxValue" /></exception>
49    </member>
50    <member name="M:System.Collections.BitArray.And(System.Collections.BitArray)">
51      <summary>現在の <see cref="T:System.Collections.BitArray" /> 内の要素と、指定した <see cref="T:System.Collections.BitArray" /> 内の対応する要素に対して、ビットごとの AND 演算を実行します。</summary>
52      <returns>現在の <see cref="T:System.Collections.BitArray" /> 内の要素と、指定した <see cref="T:System.Collections.BitArray" /> 内の対応する要素に対するビットごとの AND 演算の結果を格納する現在のインスタンス。</returns>
53      <param name="value">ビットごとの AND 演算の実行対象となる <see cref="T:System.Collections.BitArray" />。</param>
54      <exception cref="T:System.ArgumentNullException">
55        <paramref name="value" /> is null. </exception>
56      <exception cref="T:System.ArgumentException">
57        <paramref name="value" /> and the current <see cref="T:System.Collections.BitArray" /> do not have the same number of elements. </exception>
58      <filterpriority>2</filterpriority>
59    </member>
60    <member name="M:System.Collections.BitArray.Get(System.Int32)">
61      <summary>
62        <see cref="T:System.Collections.BitArray" /> の特定位置にあるビット値を取得します。</summary>
63      <returns>
64        <paramref name="index" /> 位置にあるビット値。</returns>
65      <param name="index">取得する値の 0 から始まるインデックス。</param>
66      <exception cref="T:System.ArgumentOutOfRangeException">
67        <paramref name="index" /> is less than zero.-or- <paramref name="index" /> is greater than or equal to the number of elements in the <see cref="T:System.Collections.BitArray" />. </exception>
68      <filterpriority>2</filterpriority>
69    </member>
70    <member name="M:System.Collections.BitArray.GetEnumerator">
71      <summary>
72        <see cref="T:System.Collections.BitArray" /> を反復処理する列挙子を返します。</summary>
73      <returns>
74        <see cref="T:System.Collections.BitArray" /> 全体の <see cref="T:System.Collections.IEnumerator" />。</returns>
75      <filterpriority>2</filterpriority>
76    </member>
77    <member name="P:System.Collections.BitArray.Item(System.Int32)">
78      <summary>
79        <see cref="T:System.Collections.BitArray" /> の特定位置にあるビット値を取得または設定します。</summary>
80      <returns>
81        <paramref name="index" /> 位置にあるビット値。</returns>
82      <param name="index">取得または設定する値の、0 から始まるインデックス番号。</param>
83      <exception cref="T:System.ArgumentOutOfRangeException">
84        <paramref name="index" /> is less than zero.-or- <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.BitArray.Count" />. </exception>
85      <filterpriority>2</filterpriority>
86    </member>
87    <member name="P:System.Collections.BitArray.Length">
88      <summary>
89        <see cref="T:System.Collections.BitArray" /> 内の要素の数を取得または設定します。</summary>
90      <returns>
91        <see cref="T:System.Collections.BitArray" /> にある要素の数。</returns>
92      <exception cref="T:System.ArgumentOutOfRangeException">The property is set to a value that is less than zero. </exception>
93      <filterpriority>2</filterpriority>
94    </member>
95    <member name="M:System.Collections.BitArray.Not">
96      <summary>現在の <see cref="T:System.Collections.BitArray" /> にあるすべてのビット値を反転し、true に設定されている要素を false に、false に設定されている要素を true に変更します。</summary>
97      <returns>ビット値の反転後の現在のインスタンス。</returns>
98      <filterpriority>2</filterpriority>
99    </member>
100    <member name="M:System.Collections.BitArray.Or(System.Collections.BitArray)">
101      <summary>現在の <see cref="T:System.Collections.BitArray" /> 内の要素と、指定した <see cref="T:System.Collections.BitArray" /> 内の対応する要素に対して、ビットごとの OR 演算を実行します。</summary>
102      <returns>現在の <see cref="T:System.Collections.BitArray" /> 内の要素と、指定した <see cref="T:System.Collections.BitArray" /> 内の対応する要素に対するビットごとの OR 演算の結果を格納する現在のインスタンス。</returns>
103      <param name="value">ビットごとの OR 演算の実行対象となる <see cref="T:System.Collections.BitArray" />。</param>
104      <exception cref="T:System.ArgumentNullException">
105        <paramref name="value" /> is null. </exception>
106      <exception cref="T:System.ArgumentException">
107        <paramref name="value" /> and the current <see cref="T:System.Collections.BitArray" /> do not have the same number of elements. </exception>
108      <filterpriority>2</filterpriority>
109    </member>
110    <member name="M:System.Collections.BitArray.Set(System.Int32,System.Boolean)">
111      <summary>
112        <see cref="T:System.Collections.BitArray" /> の特定位置にあるビットを指定した値に設定します。</summary>
113      <param name="index">設定するビットの、0 から始まるインデックス番号。</param>
114      <param name="value">ビットに代入するブール値。</param>
115      <exception cref="T:System.ArgumentOutOfRangeException">
116        <paramref name="index" /> is less than zero.-or- <paramref name="index" /> is greater than or equal to the number of elements in the <see cref="T:System.Collections.BitArray" />. </exception>
117      <filterpriority>2</filterpriority>
118    </member>
119    <member name="M:System.Collections.BitArray.SetAll(System.Boolean)">
120      <summary>
121        <see cref="T:System.Collections.BitArray" /> 内のすべてのビットを指定した値に設定します。</summary>
122      <param name="value">すべてのビットに代入するブール値。</param>
123      <filterpriority>2</filterpriority>
124    </member>
125    <member name="M:System.Collections.BitArray.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
126      <summary>指定した <see cref="T:System.Array" /> インデックスを開始位置として、<see cref="T:System.Collections.BitArray" /> の要素を <see cref="T:System.Array" /> にコピーします。</summary>
127      <param name="array">
128        <see cref="T:System.Collections.BitArray" /> からコピーされる要素のコピー先となる 1 次元の <see cref="T:System.Array" />。<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
129      <param name="index">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
130      <exception cref="T:System.ArgumentNullException">
131        <paramref name="array" /> is null. </exception>
132      <exception cref="T:System.ArgumentOutOfRangeException">
133        <paramref name="index" /> is less than zero. </exception>
134      <exception cref="T:System.ArgumentException">
135        <paramref name="array" /> is multidimensional.-or- The number of elements in the source <see cref="T:System.Collections.BitArray" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.-or-The type of the source <see cref="T:System.Collections.BitArray" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
136    </member>
137    <member name="P:System.Collections.BitArray.System#Collections#ICollection#Count">
138      <summary>
139        <see cref="T:System.Collections.BitArray" /> にある要素の数を取得します。</summary>
140      <returns>
141        <see cref="T:System.Collections.BitArray" /> にある要素の数。</returns>
142    </member>
143    <member name="P:System.Collections.BitArray.System#Collections#ICollection#IsSynchronized">
144      <summary>
145        <see cref="T:System.Collections.BitArray" /> へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。</summary>
146      <returns>
147        <see cref="T:System.Collections.BitArray" /> へのアクセスが同期されている (スレッド セーフである) 場合は true。それ以外の場合は false。</returns>
148    </member>
149    <member name="P:System.Collections.BitArray.System#Collections#ICollection#SyncRoot">
150      <summary>
151        <see cref="T:System.Collections.BitArray" /> へのアクセスを同期するために使用できるオブジェクトを取得します。</summary>
152      <returns>
153        <see cref="T:System.Collections.BitArray" /> へのアクセスを同期するために使用できるオブジェクト。</returns>
154    </member>
155    <member name="M:System.Collections.BitArray.Xor(System.Collections.BitArray)">
156      <summary>現在の <see cref="T:System.Collections.BitArray" /> 内の要素と、指定した <see cref="T:System.Collections.BitArray" /> 内の対応する要素に対して、ビットごとの排他的 OR 演算を実行します。</summary>
157      <returns>現在の <see cref="T:System.Collections.BitArray" /> 内の要素と、指定した <see cref="T:System.Collections.BitArray" /> 内の対応する要素に対するビットごとの排他的 OR 演算の結果を格納する現在のインスタンス。</returns>
158      <param name="value">ビットごとの排他的 OR 演算の実行対象となる <see cref="T:System.Collections.BitArray" />。</param>
159      <exception cref="T:System.ArgumentNullException">
160        <paramref name="value" /> is null. </exception>
161      <exception cref="T:System.ArgumentException">
162        <paramref name="value" /> and the current <see cref="T:System.Collections.BitArray" /> do not have the same number of elements. </exception>
163      <filterpriority>2</filterpriority>
164    </member>
165    <member name="T:System.Collections.StructuralComparisons">
166      <summary>2 つのコレクション オブジェクトの構造比較を実行するオブジェクトを提供します。</summary>
167    </member>
168    <member name="P:System.Collections.StructuralComparisons.StructuralComparer">
169      <summary>2 つのオブジェクトの構造比較を実行する定義済みのオブジェクトを取得します。</summary>
170      <returns>2 つのコレクション オブジェクトの構造比較に使用される定義済みのオブジェクト。</returns>
171    </member>
172    <member name="P:System.Collections.StructuralComparisons.StructuralEqualityComparer">
173      <summary>2 つのオブジェクトの構造上の等価性を比較する定義済みのオブジェクトを取得します。</summary>
174      <returns>2 つのコレクション オブジェクトの構造上の等価性を比較するのに使用される定義済みのオブジェクト。</returns>
175    </member>
176    <member name="T:System.Collections.Generic.Comparer`1">
177      <summary>
178        <see cref="T:System.Collections.Generic.IComparer`1" /> ジェネリック インターフェイスの実装のための基本クラスを提供します。</summary>
179      <typeparam name="T">比較するオブジェクトの型。</typeparam>
180      <filterpriority>1</filterpriority>
181    </member>
182    <member name="M:System.Collections.Generic.Comparer`1.#ctor">
183      <summary>
184        <see cref="T:System.Collections.Generic.Comparer`1" /> クラスの新しいインスタンスを初期化します。</summary>
185    </member>
186    <member name="M:System.Collections.Generic.Comparer`1.Compare(`0,`0)">
187      <summary>派生クラスでオーバーライドされると、同じ型の 2 つのオブジェクトに対する比較を実行し、一方のオブジェクトが他方よりも小さいか、等しいか、大きいかを示す値を返します。</summary>
188      <returns>
189        <paramref name="x" /> と <paramref name="y" /> の相対値を示す符号付き整数。次の表を参照してください。値説明0 より小さい値<paramref name="x" /> が <paramref name="y" /> より小さい。0<paramref name="x" /> と <paramref name="y" /> が等しい。0 を超える値<paramref name="x" /> が <paramref name="y" /> より大きくなっています。</returns>
190      <param name="x">比較対象の第 1 オブジェクト。</param>
191      <param name="y">2 番目に比較するオブジェクト。</param>
192      <exception cref="T:System.ArgumentException">
193        <paramref name="T" /> 型が、<see cref="T:System.IComparable`1" /> ジェネリック インターフェイスと <see cref="T:System.IComparable" /> インターフェイスのいずれも実装していません。</exception>
194    </member>
195    <member name="M:System.Collections.Generic.Comparer`1.Create(System.Comparison{`0})">
196      <summary>指定した比較を使用して比較子を作成します。</summary>
197      <returns>新しい比較子。</returns>
198      <param name="comparison">使用する比較演算子です。</param>
199    </member>
200    <member name="P:System.Collections.Generic.Comparer`1.Default">
201      <summary>汎用引数で指定された型に対して、並べ替え順序を比較するための既定の比較子を返します。</summary>
202      <returns>
203        <see cref="T:System.Collections.Generic.Comparer`1" /> を継承し、<paramref name="T" /> 型の並べ替え順序の比較子として機能するオブジェクト。</returns>
204    </member>
205    <member name="M:System.Collections.Generic.Comparer`1.System#Collections#IComparer#Compare(System.Object,System.Object)">
206      <summary>2 つのオブジェクトを比較して、一方が他方より小さいか、同じか、または大きいかを示す値を返します。</summary>
207      <returns>
208        <paramref name="x" /> と <paramref name="y" /> の相対値を示す符号付き整数。次の表を参照してください。値説明0 より小さい値<paramref name="x" /> が <paramref name="y" /> より小さい。0<paramref name="x" /> と <paramref name="y" /> が等しい。0 を超える値<paramref name="x" /> が <paramref name="y" /> より大きくなっています。</returns>
209      <param name="x">比較対象の第 1 オブジェクト。</param>
210      <param name="y">2 番目に比較するオブジェクト。</param>
211      <exception cref="T:System.ArgumentException">
212        <paramref name="x" /> または <paramref name="y" /> が、<paramref name="T" /> 型にキャストできない型です。または<paramref name="x" /> および <paramref name="y" /> が、<see cref="T:System.IComparable`1" /> ジェネリック インターフェイスまたは <see cref="T:System.IComparable" /> インターフェイスのいずれも実装していません。</exception>
213    </member>
214    <member name="T:System.Collections.Generic.Dictionary`2">
215      <summary>キーと値のコレクションを表します。この種類の .NET Framework ソース コードを参照して、次を参照してください。、 Reference Sourceです。</summary>
216      <typeparam name="TKey">ディクショナリ内のキーの型。</typeparam>
217      <typeparam name="TValue">ディクショナリ内の値の型。</typeparam>
218      <filterpriority>1</filterpriority>
219    </member>
220    <member name="M:System.Collections.Generic.Dictionary`2.#ctor">
221      <summary>空で、既定の初期量を備え、キーの型の既定の等値比較子を使用する、<see cref="T:System.Collections.Generic.Dictionary`2" /> クラスの新しいインスタンスを初期化します。</summary>
222    </member>
223    <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})">
224      <summary>指定した <see cref="T:System.Collections.Generic.IDictionary`2" /> から要素をコピーして格納し、キーの型の既定の等値比較子を使用する、<see cref="T:System.Collections.Generic.Dictionary`2" /> クラスの新しいインスタンスを初期化します。</summary>
225      <param name="dictionary">新しい <see cref="T:System.Collections.Generic.IDictionary`2" /> に要素がコピーされた <see cref="T:System.Collections.Generic.Dictionary`2" />。</param>
226      <exception cref="T:System.ArgumentNullException">
227        <paramref name="dictionary" /> は null です。</exception>
228      <exception cref="T:System.ArgumentException">
229        <paramref name="dictionary" /> に、1 つ以上の重複するキーが格納されています。</exception>
230    </member>
231    <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IEqualityComparer{`0})">
232      <summary>指定した <see cref="T:System.Collections.Generic.IDictionary`2" /> から要素をコピーして格納し、指定した <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> を使用する、<see cref="T:System.Collections.Generic.Dictionary`2" /> クラスの新しいインスタンスを初期化します。</summary>
233      <param name="dictionary">新しい <see cref="T:System.Collections.Generic.IDictionary`2" /> に要素がコピーされた <see cref="T:System.Collections.Generic.Dictionary`2" />。</param>
234      <param name="comparer">キーの比較時に使用する <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 実装。キーの型の既定の null を使用する場合は <see cref="T:System.Collections.Generic.EqualityComparer`1" />。</param>
235      <exception cref="T:System.ArgumentNullException">
236        <paramref name="dictionary" /> は null です。</exception>
237      <exception cref="T:System.ArgumentException">
238        <paramref name="dictionary" /> に、1 つ以上の重複するキーが格納されています。</exception>
239    </member>
240    <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IEqualityComparer{`0})">
241      <summary>空で、既定の初期量を備え、指定した <see cref="T:System.Collections.Generic.Dictionary`2" /> を使用する、<see cref="T:System.Collections.Generic.IEqualityComparer`1" /> クラスの新しいインスタンスを初期化します。</summary>
242      <param name="comparer">キーの比較時に使用する <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 実装。キーの型の既定の null を使用する場合は <see cref="T:System.Collections.Generic.EqualityComparer`1" />。</param>
243    </member>
244    <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Int32)">
245      <summary>空で、指定した初期量を備え、キーの型の既定の等値比較子を使用する、<see cref="T:System.Collections.Generic.Dictionary`2" /> クラスの新しいインスタンスを初期化します。</summary>
246      <param name="capacity">
247        <see cref="T:System.Collections.Generic.Dictionary`2" /> が格納できる要素数の初期値。</param>
248      <exception cref="T:System.ArgumentOutOfRangeException">
249        <paramref name="capacity" /> が 0 未満です。</exception>
250    </member>
251    <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
252      <summary>空で、指定した初期量を備え、指定した <see cref="T:System.Collections.Generic.Dictionary`2" /> を使用する、<see cref="T:System.Collections.Generic.IEqualityComparer`1" /> クラスの新しいインスタンスを初期化します。</summary>
253      <param name="capacity">
254        <see cref="T:System.Collections.Generic.Dictionary`2" /> が格納できる要素数の初期値。</param>
255      <param name="comparer">キーの比較時に使用する <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 実装。キーの型の既定の null を使用する場合は <see cref="T:System.Collections.Generic.EqualityComparer`1" />。</param>
256      <exception cref="T:System.ArgumentOutOfRangeException">
257        <paramref name="capacity" /> が 0 未満です。</exception>
258    </member>
259    <member name="M:System.Collections.Generic.Dictionary`2.Add(`0,`1)">
260      <summary>指定したキーと値をディクショナリに追加します。</summary>
261      <param name="key">追加する要素のキー。</param>
262      <param name="value">追加する要素の値。参照型の場合は null の値を使用できます。</param>
263      <exception cref="T:System.ArgumentNullException">
264        <paramref name="key" /> は null です。</exception>
265      <exception cref="T:System.ArgumentException">同じキーを持つ要素が、<see cref="T:System.Collections.Generic.Dictionary`2" /> に既に存在します。</exception>
266    </member>
267    <member name="M:System.Collections.Generic.Dictionary`2.Clear">
268      <summary>
269        <see cref="T:System.Collections.Generic.Dictionary`2" /> からすべてのキーと値を削除します。</summary>
270    </member>
271    <member name="P:System.Collections.Generic.Dictionary`2.Comparer">
272      <summary>ディクショナリのキーが等しいかどうかを確認するために使用する <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> を取得します。</summary>
273      <returns>現在の <see cref="T:System.Collections.Generic.Dictionary`2" /> のキーが等しいかどうかを確認し、キーのハッシュ値を提供するために使用する <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> ジェネリック インターフェイスの実装。</returns>
274    </member>
275    <member name="M:System.Collections.Generic.Dictionary`2.ContainsKey(`0)">
276      <summary>指定したキーが <see cref="T:System.Collections.Generic.Dictionary`2" /> に格納されているかどうかを判断します。</summary>
277      <returns>指定したキーを持つ要素が true に格納されている場合は <see cref="T:System.Collections.Generic.Dictionary`2" />。それ以外の場合は false。</returns>
278      <param name="key">
279        <see cref="T:System.Collections.Generic.Dictionary`2" /> 内で検索されるキー。</param>
280      <exception cref="T:System.ArgumentNullException">
281        <paramref name="key" /> は null です。</exception>
282    </member>
283    <member name="M:System.Collections.Generic.Dictionary`2.ContainsValue(`1)">
284      <summary>
285        <see cref="T:System.Collections.Generic.Dictionary`2" /> に特定の値が格納されているかどうかを判断します。</summary>
286      <returns>指定した値を持つ要素が true に格納されている場合は <see cref="T:System.Collections.Generic.Dictionary`2" />。それ以外の場合は false。</returns>
287      <param name="value">
288        <see cref="T:System.Collections.Generic.Dictionary`2" /> 内で検索される値。参照型の場合は null の値を使用できます。</param>
289    </member>
290    <member name="P:System.Collections.Generic.Dictionary`2.Count">
291      <summary>
292        <see cref="T:System.Collections.Generic.Dictionary`2" /> に格納されているキー/値ペアの数を取得します。</summary>
293      <returns>
294        <see cref="T:System.Collections.Generic.Dictionary`2" /> に格納されているキー/値ペアの数。</returns>
295    </member>
296    <member name="M:System.Collections.Generic.Dictionary`2.GetEnumerator">
297      <summary>
298        <see cref="T:System.Collections.Generic.Dictionary`2" /> を反復処理する列挙子を返します。</summary>
299      <returns>
300        <see cref="T:System.Collections.Generic.Dictionary`2" /> の <see cref="T:System.Collections.Generic.Dictionary`2.Enumerator" /> 構造体。</returns>
301    </member>
302    <member name="P:System.Collections.Generic.Dictionary`2.Item(`0)">
303      <summary>指定されたキーに関連付けられている値を取得または設定します。</summary>
304      <returns>指定されたキーに関連付けられている値。指定したキーが見つからなかった場合、get 操作は <see cref="T:System.Collections.Generic.KeyNotFoundException" /> をスローし、set 操作は指定したキーを持つ新しい要素を作成します。</returns>
305      <param name="key">取得または設定する値のキー。</param>
306      <exception cref="T:System.ArgumentNullException">
307        <paramref name="key" /> は null です。</exception>
308      <exception cref="T:System.Collections.Generic.KeyNotFoundException">プロパティが取得されましたが、コレクション内に <paramref name="key" /> が存在しません。</exception>
309    </member>
310    <member name="P:System.Collections.Generic.Dictionary`2.Keys">
311      <summary>
312        <see cref="T:System.Collections.Generic.Dictionary`2" /> 内のキーを格納しているコレクションを取得します。</summary>
313      <returns>
314        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 内のキーを格納している <see cref="T:System.Collections.Generic.Dictionary`2" />。</returns>
315    </member>
316    <member name="M:System.Collections.Generic.Dictionary`2.Remove(`0)">
317      <summary>指定したキーを持つ値を <see cref="T:System.Collections.Generic.Dictionary`2" /> から削除します。</summary>
318      <returns>要素が見つかり、正常に削除された場合は true。それ以外の場合は false。このメソッドは、<paramref name="key" /> が <see cref="T:System.Collections.Generic.Dictionary`2" /> に見つからない場合、false を返します。</returns>
319      <param name="key">削除する要素のキー。</param>
320      <exception cref="T:System.ArgumentNullException">
321        <paramref name="key" /> は null です。</exception>
322    </member>
323    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
324      <summary>指定した値を、指定したキーと共に <see cref="T:System.Collections.Generic.ICollection`1" /> に追加します。</summary>
325      <param name="keyValuePair">
326        <see cref="T:System.Collections.Generic.Dictionary`2" /> に追加するキーと値を表す <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 構造体。</param>
327      <exception cref="T:System.ArgumentNullException">
328        <paramref name="keyValuePair" /> のキーが null です。</exception>
329      <exception cref="T:System.ArgumentException">同じキーを持つ要素が、<see cref="T:System.Collections.Generic.Dictionary`2" /> に既に存在します。</exception>
330    </member>
331    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
332      <summary>
333        <see cref="T:System.Collections.Generic.ICollection`1" /> に特定のキーと値が格納されているかどうかを判断します。</summary>
334      <returns>true が <paramref name="keyValuePair" /> に存在する場合は <see cref="T:System.Collections.Generic.ICollection`1" />。それ以外の場合は false。</returns>
335      <param name="keyValuePair">
336        <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 内で検索される <see cref="T:System.Collections.Generic.ICollection`1" /> 構造体。</param>
337    </member>
338    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
339      <summary>指定した配列インデックスを開始位置として、<see cref="T:System.Collections.Generic.KeyValuePair`2" /> 型の配列に <see cref="T:System.Collections.Generic.ICollection`1" /> の要素をコピーします。</summary>
340      <param name="array">
341        <see cref="T:System.Collections.Generic.ICollection`1" /> からコピーされる <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 要素のコピー先である <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 型の 1 次元配列。配列には、0 から始まるインデックスが設定されている必要があります。</param>
342      <param name="index">コピーの開始位置とする <paramref name="array" /> のインデックス (0 から始まる)。</param>
343      <exception cref="T:System.ArgumentNullException">
344        <paramref name="array" /> は null です。</exception>
345      <exception cref="T:System.ArgumentOutOfRangeException">
346        <paramref name="index" /> が 0 未満です。</exception>
347      <exception cref="T:System.ArgumentException">コピー元の <see cref="T:System.Collections.Generic.ICollection`1" /> の要素数が、<paramref name="index" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。</exception>
348    </member>
349    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#IsReadOnly">
350      <summary>ディクショナリが読み取り専用かどうかを示す値を取得します。</summary>
351      <returns>true が読み取り専用である場合は <see cref="T:System.Collections.Generic.ICollection`1" />。それ以外の場合は false。<see cref="T:System.Collections.Generic.Dictionary`2" /> の既定の実装では、このプロパティは常に false を返します。</returns>
352    </member>
353    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
354      <summary>ディクショナリからキーと値を削除します。</summary>
355      <returns>
356        <paramref name="keyValuePair" /> で表されたキーと値が見つかり、正常に削除された場合は true。それ以外の場合は false。このメソッドは、<paramref name="keyValuePair" /> が <see cref="T:System.Collections.Generic.ICollection`1" /> に見つからない場合、false を返します。</returns>
357      <param name="keyValuePair">
358        <see cref="T:System.Collections.Generic.Dictionary`2" /> から削除するキーと値を表す <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 構造体。</param>
359    </member>
360    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
361      <summary>
362        <see cref="T:System.Collections.Generic.ICollection`1" /> のキーを保持している <see cref="T:System.Collections.Generic.IDictionary`2" /> を取得します。</summary>
363      <returns>
364        <see cref="T:System.Collections.Generic.IDictionary`2" /> のキーを保持している <paramref name="TKey" /> 型の <see cref="T:System.Collections.Generic.ICollection`1" />。</returns>
365    </member>
366    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
367      <summary>
368        <see cref="T:System.Collections.Generic.ICollection`1" /> 内の値を格納している <see cref="T:System.Collections.Generic.IDictionary`2" /> を取得します。</summary>
369      <returns>
370        <see cref="T:System.Collections.Generic.IDictionary`2" /> 内の値を格納している <paramref name="TValue" /> 型の <see cref="T:System.Collections.Generic.ICollection`1" />。</returns>
371    </member>
372    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
373      <summary>コレクションを反復処理する列挙子を返します。</summary>
374      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
375    </member>
376    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Keys">
377      <summary>
378        <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" /> のキーを格納しているコレクションを取得します。</summary>
379      <returns>
380        <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" /> のキーを格納しているコレクション。</returns>
381    </member>
382    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Values">
383      <summary>
384        <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" /> の値を格納しているコレクションを取得します。</summary>
385      <returns>
386        <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" /> 内の値を格納しているコレクション。</returns>
387    </member>
388    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
389      <summary>指定した配列インデックスを開始位置として、配列に <see cref="T:System.Collections.Generic.ICollection`1" /> の要素をコピーします。</summary>
390      <param name="array">
391        <see cref="T:System.Collections.Generic.ICollection`1" /> から要素がコピーされる 1 次元の配列。配列には、0 から始まるインデックスが設定されている必要があります。</param>
392      <param name="index">コピーの開始位置とする <paramref name="array" /> のインデックス (0 から始まる)。</param>
393      <exception cref="T:System.ArgumentNullException">
394        <paramref name="array" /> は null です。</exception>
395      <exception cref="T:System.ArgumentOutOfRangeException">
396        <paramref name="index" /> が 0 未満です。</exception>
397      <exception cref="T:System.ArgumentException">
398        <paramref name="array" /> が多次元です。または<paramref name="array" /> に 0 から始まるインデックス番号がありません。またはコピー元の <see cref="T:System.Collections.Generic.ICollection`1" /> の要素数が、<paramref name="index" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。またはコピー元の <see cref="T:System.Collections.Generic.ICollection`1" /> の型が、コピー先の <paramref name="array" /> の型に自動的にキャストできません。</exception>
399    </member>
400    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#IsSynchronized">
401      <summary>
402        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。</summary>
403      <returns>true へのアクセスが同期されている (スレッド セーフである) 場合は <see cref="T:System.Collections.ICollection" />。それ以外の場合は false。<see cref="T:System.Collections.Generic.Dictionary`2" /> の既定の実装では、このプロパティは常に false を返します。</returns>
404    </member>
405    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#SyncRoot">
406      <summary>
407        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクトを取得します。</summary>
408      <returns>
409        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクト。</returns>
410    </member>
411    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
412      <summary>指定したキーと値をディクショナリに追加します。</summary>
413      <param name="key">キーとして使用するオブジェクト。</param>
414      <param name="value">値として使用するオブジェクト。</param>
415      <exception cref="T:System.ArgumentNullException">
416        <paramref name="key" /> は null です。</exception>
417      <exception cref="T:System.ArgumentException">
418        <paramref name="key" /> が、<paramref name="TKey" /> のキーの型 <see cref="T:System.Collections.Generic.Dictionary`2" /> に代入できない型です。または<paramref name="value" /> が、<paramref name="TValue" /> 内の値の型である <see cref="T:System.Collections.Generic.Dictionary`2" /> に代入できない型です。または同じキーを持つ値が、<see cref="T:System.Collections.Generic.Dictionary`2" /> に既に存在します。</exception>
419    </member>
420    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Contains(System.Object)">
421      <summary>指定したキーの要素が <see cref="T:System.Collections.IDictionary" /> に格納されているかどうかを確認します。</summary>
422      <returns>指定したキーを持つ要素が true に格納されている場合は <see cref="T:System.Collections.IDictionary" />。それ以外の場合は false。</returns>
423      <param name="key">
424        <see cref="T:System.Collections.IDictionary" /> 内で検索されるキー。</param>
425      <exception cref="T:System.ArgumentNullException">
426        <paramref name="key" /> は null です。</exception>
427    </member>
428    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#GetEnumerator">
429      <summary>
430        <see cref="T:System.Collections.IDictionaryEnumerator" /> の <see cref="T:System.Collections.IDictionary" /> を返します。</summary>
431      <returns>
432        <see cref="T:System.Collections.IDictionaryEnumerator" /> の <see cref="T:System.Collections.IDictionary" />。</returns>
433    </member>
434    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#IsFixedSize">
435      <summary>
436        <see cref="T:System.Collections.IDictionary" /> が固定サイズかどうかを示す値を取得します。</summary>
437      <returns>true が固定サイズの場合は <see cref="T:System.Collections.IDictionary" />。それ以外の場合は false。<see cref="T:System.Collections.Generic.Dictionary`2" /> の既定の実装では、このプロパティは常に false を返します。</returns>
438    </member>
439    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#IsReadOnly">
440      <summary>
441        <see cref="T:System.Collections.IDictionary" /> が読み取り専用かどうかを示す値を取得します。</summary>
442      <returns>true が読み取り専用である場合は <see cref="T:System.Collections.IDictionary" />。それ以外の場合は false。<see cref="T:System.Collections.Generic.Dictionary`2" /> の既定の実装では、このプロパティは常に false を返します。</returns>
443    </member>
444    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Item(System.Object)">
445      <summary>指定したキーの値を取得または設定します。</summary>
446      <returns>指定したキーに関連付けられた値。ただし、<paramref name="key" /> がディクショナリにない場合、または <paramref name="key" /> が <see cref="T:System.Collections.Generic.Dictionary`2" /> のキー型 <paramref name="TKey" /> に割り当てられない型である場合は null。</returns>
447      <param name="key">取得する値のキー。</param>
448      <exception cref="T:System.ArgumentNullException">
449        <paramref name="key" /> は null です。</exception>
450      <exception cref="T:System.ArgumentException">値を代入しようとしていますが、<paramref name="key" /> は、<paramref name="TKey" /> のキーの型 <see cref="T:System.Collections.Generic.Dictionary`2" /> に代入できない型です。または値を代入しようとしていますが、<paramref name="value" /> は、<paramref name="TValue" /> の値の型 <see cref="T:System.Collections.Generic.Dictionary`2" /> に代入できない型です。</exception>
451    </member>
452    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Keys">
453      <summary>
454        <see cref="T:System.Collections.ICollection" /> のキーを保持している <see cref="T:System.Collections.IDictionary" /> を取得します。</summary>
455      <returns>
456        <see cref="T:System.Collections.ICollection" /> のキーを保持している <see cref="T:System.Collections.IDictionary" />。</returns>
457    </member>
458    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Remove(System.Object)">
459      <summary>指定したキーを持つ要素を <see cref="T:System.Collections.IDictionary" /> から削除します。</summary>
460      <param name="key">削除する要素のキー。</param>
461      <exception cref="T:System.ArgumentNullException">
462        <paramref name="key" /> は null です。</exception>
463    </member>
464    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Values">
465      <summary>
466        <see cref="T:System.Collections.ICollection" /> 内の値を格納している <see cref="T:System.Collections.IDictionary" /> を取得します。</summary>
467      <returns>
468        <see cref="T:System.Collections.ICollection" /> 内の値を格納している <see cref="T:System.Collections.IDictionary" />。</returns>
469    </member>
470    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IEnumerable#GetEnumerator">
471      <summary>コレクションを反復処理する列挙子を返します。</summary>
472      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.IEnumerator" />。</returns>
473    </member>
474    <member name="M:System.Collections.Generic.Dictionary`2.TryGetValue(`0,`1@)">
475      <summary>指定したキーに関連付けられている値を取得します。</summary>
476      <returns>指定したキーを持つ要素が true に格納されている場合は <see cref="T:System.Collections.Generic.Dictionary`2" />。それ以外の場合は false。</returns>
477      <param name="key">取得する値のキー。</param>
478      <param name="value">このメソッドから制御が戻るときに、キーが見つかった場合は、指定したキーに関連付けられている値が格納されます。それ以外の場合は <paramref name="value" /> パラメーターの型に対する既定の値です。このパラメーターは初期化せずに渡されます。</param>
479      <exception cref="T:System.ArgumentNullException">
480        <paramref name="key" /> は null です。</exception>
481    </member>
482    <member name="P:System.Collections.Generic.Dictionary`2.Values">
483      <summary>
484        <see cref="T:System.Collections.Generic.Dictionary`2" /> 内の値を格納しているコレクションを取得します。</summary>
485      <returns>
486        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 内の値を格納している <see cref="T:System.Collections.Generic.Dictionary`2" />。</returns>
487    </member>
488    <member name="T:System.Collections.Generic.Dictionary`2.Enumerator">
489      <summary>
490        <see cref="T:System.Collections.Generic.Dictionary`2" /> の要素を列挙します。</summary>
491    </member>
492    <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.Current">
493      <summary>列挙子の現在位置の要素を取得します。</summary>
494      <returns>
495        <see cref="T:System.Collections.Generic.Dictionary`2" /> 内の、列挙子の現在位置にある要素。</returns>
496    </member>
497    <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.Dispose">
498      <summary>
499        <see cref="T:System.Collections.Generic.Dictionary`2.Enumerator" /> によって使用されているすべてのリソースを解放します。</summary>
500    </member>
501    <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.MoveNext">
502      <summary>列挙子を <see cref="T:System.Collections.Generic.Dictionary`2" /> の次の要素に進めます。</summary>
503      <returns>列挙子が次の要素に正常に進んだ場合は true。列挙子がコレクションの末尾を越えた場合は false。</returns>
504      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
505    </member>
506    <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Entry">
507      <summary>列挙子の現在位置の要素を取得します。</summary>
508      <returns>ディクショナリ内の列挙子の現在位置にある、<see cref="T:System.Collections.DictionaryEntry" /> としての要素。</returns>
509      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
510    </member>
511    <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Key">
512      <summary>列挙子の現在位置の要素のキーを取得します。</summary>
513      <returns>ディクショナリ内の列挙子の現在位置にある要素のキー。</returns>
514      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
515    </member>
516    <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Value">
517      <summary>列挙子の現在位置の要素の値を取得します。</summary>
518      <returns>ディレクショナリ内の列挙子の現在位置にある要素の値。</returns>
519      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
520    </member>
521    <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IEnumerator#Current">
522      <summary>列挙子の現在位置の要素を取得します。</summary>
523      <returns>コレクション内の列挙子の現在位置にある、<see cref="T:System.Object" /> としての要素。</returns>
524      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
525    </member>
526    <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IEnumerator#Reset">
527      <summary>列挙子を初期位置、つまりコレクションの最初の要素の前に設定します。</summary>
528      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
529    </member>
530    <member name="T:System.Collections.Generic.Dictionary`2.KeyCollection">
531      <summary>
532        <see cref="T:System.Collections.Generic.Dictionary`2" /> 内のキーのコレクションを表します。このクラスは継承できません。</summary>
533    </member>
534    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.#ctor(System.Collections.Generic.Dictionary{`0,`1})">
535      <summary>指定した <see cref="T:System.Collections.Generic.Dictionary`2" /> 内のキーを反映する、<see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> クラスの新しいインスタンスを初期化します。</summary>
536      <param name="dictionary">新しい <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> にキーが反映される <see cref="T:System.Collections.Generic.Dictionary`2" />。</param>
537      <exception cref="T:System.ArgumentNullException">
538        <paramref name="dictionary" /> は null なので、</exception>
539    </member>
540    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.CopyTo(`0[],System.Int32)">
541      <summary>
542        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> の要素を既存の 1 次元の <see cref="T:System.Array" /> にコピーします。コピー操作は、配列内の指定したインデックスから始まります。</summary>
543      <param name="array">
544        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> から要素がコピーされる 1 次元の <see cref="T:System.Array" />。<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
545      <param name="index">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
546      <exception cref="T:System.ArgumentNullException">
547        <paramref name="array" /> は null なので、</exception>
548      <exception cref="T:System.ArgumentOutOfRangeException">
549        <paramref name="index" /> が 0 未満です。</exception>
550      <exception cref="T:System.ArgumentException">コピー元の <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> の要素数が、<paramref name="index" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。</exception>
551    </member>
552    <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Count">
553      <summary>
554        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> に格納されている要素の数を取得します。</summary>
555      <returns>
556        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> に格納されている要素の数。このプロパティ値を取得することは、O(1) 操作になります。</returns>
557    </member>
558    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.GetEnumerator">
559      <summary>
560        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> を反復処理する列挙子を返します。</summary>
561      <returns>
562        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> の <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator" />。</returns>
563    </member>
564    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Add(`0)">
565      <summary>
566        <see cref="T:System.Collections.Generic.ICollection`1" /> に項目を追加します。この実装は常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
567      <param name="item">
568        <see cref="T:System.Collections.Generic.ICollection`1" /> に追加するオブジェクト。</param>
569      <exception cref="T:System.NotSupportedException">常にスローされます。</exception>
570    </member>
571    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Clear">
572      <summary>
573        <see cref="T:System.Collections.Generic.ICollection`1" /> からすべての項目を削除します。この実装は常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
574      <exception cref="T:System.NotSupportedException">常にスローされます。</exception>
575    </member>
576    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Contains(`0)">
577      <summary>
578        <see cref="T:System.Collections.Generic.ICollection`1" /> に特定の値が格納されているかどうかを判断します。</summary>
579      <returns>
580        <paramref name="item" /> が <see cref="T:System.Collections.Generic.ICollection`1" /> に存在する場合は true。それ以外の場合は false。</returns>
581      <param name="item">
582        <see cref="T:System.Collections.Generic.ICollection`1" /> 内で検索するオブジェクト。</param>
583    </member>
584    <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#IsReadOnly">
585      <summary>
586        <see cref="T:System.Collections.Generic.ICollection`1" /> が読み取り専用かどうかを示す値を取得します。</summary>
587      <returns>
588        <see cref="T:System.Collections.Generic.ICollection`1" /> が読み取り専用である場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> の既定の実装では、このプロパティは常に true を返します。</returns>
589    </member>
590    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Remove(`0)">
591      <summary>
592        <see cref="T:System.Collections.Generic.ICollection`1" /> 内で最初に見つかった特定のオブジェクトを削除します。この実装は常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
593      <returns>
594        <paramref name="item" /> が <see cref="T:System.Collections.Generic.ICollection`1" /> から正常に削除された場合は true。それ以外の場合は false。このメソッドは、<paramref name="item" /> が元の <see cref="T:System.Collections.Generic.ICollection`1" /> に見つからなかった場合にも false を返します。</returns>
595      <param name="item">
596        <see cref="T:System.Collections.Generic.ICollection`1" /> から削除するオブジェクト。</param>
597      <exception cref="T:System.NotSupportedException">常にスローされます。</exception>
598    </member>
599    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
600      <summary>コレクションを反復処理する列挙子を返します。</summary>
601      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
602    </member>
603    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
604      <summary>
605        <see cref="T:System.Collections.ICollection" /> の要素を <see cref="T:System.Array" /> にコピーします。<see cref="T:System.Array" /> の特定のインデックスからコピーが開始されます。</summary>
606      <param name="array">
607        <see cref="T:System.Collections.ICollection" /> から要素がコピーされる 1 次元の <see cref="T:System.Array" />。<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
608      <param name="index">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
609      <exception cref="T:System.ArgumentNullException">
610        <paramref name="array" /> は null なので、</exception>
611      <exception cref="T:System.ArgumentOutOfRangeException">
612        <paramref name="index" /> が 0 未満です。</exception>
613      <exception cref="T:System.ArgumentException">
614        <paramref name="array" /> が多次元です。または<paramref name="array" /> に 0 から始まるインデックス番号がありません。またはコピー元の <see cref="T:System.Collections.ICollection" /> の要素数が、<paramref name="index" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。またはコピー元の <see cref="T:System.Collections.ICollection" /> の型が、コピー先の <paramref name="array" /> の型に自動的にキャストできません。</exception>
615    </member>
616    <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#IsSynchronized">
617      <summary>
618        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。</summary>
619      <returns>
620        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) 場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> の既定の実装では、このプロパティは常に false を返します。</returns>
621    </member>
622    <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#SyncRoot">
623      <summary>
624        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクトを取得します。</summary>
625      <returns>
626        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクト。<see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> の既定の実装では、このプロパティは常に現在のインスタンスを返します。</returns>
627    </member>
628    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#IEnumerable#GetEnumerator">
629      <summary>コレクションを反復処理する列挙子を返します。</summary>
630      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.IEnumerator" />。</returns>
631    </member>
632    <member name="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator">
633      <summary>
634        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> の要素を列挙します。</summary>
635    </member>
636    <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.Current">
637      <summary>列挙子の現在位置の要素を取得します。</summary>
638      <returns>
639        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> のうち、列挙子の現在位置にある要素。</returns>
640    </member>
641    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.Dispose">
642      <summary>
643        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator" /> によって使用されているすべてのリソースを解放します。</summary>
644    </member>
645    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.MoveNext">
646      <summary>列挙子を <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> の次の要素に進めます。</summary>
647      <returns>列挙子が次の要素に正常に進んだ場合は true。列挙子がコレクションの末尾を越えた場合は false。</returns>
648      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
649    </member>
650    <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Current">
651      <summary>列挙子の現在位置の要素を取得します。</summary>
652      <returns>コレクション内の、列挙子の現在位置にある要素。</returns>
653      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
654    </member>
655    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Reset">
656      <summary>列挙子を初期位置、つまりコレクションの最初の要素の前に設定します。</summary>
657      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
658    </member>
659    <member name="T:System.Collections.Generic.Dictionary`2.ValueCollection">
660      <summary>
661        <see cref="T:System.Collections.Generic.Dictionary`2" /> 内の値のコレクションを表します。このクラスは継承できません。</summary>
662    </member>
663    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.#ctor(System.Collections.Generic.Dictionary{`0,`1})">
664      <summary>指定した <see cref="T:System.Collections.Generic.Dictionary`2" /> 内の値を反映する、<see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> クラスの新しいインスタンスを初期化します。</summary>
665      <param name="dictionary">新しい <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> に値が反映される <see cref="T:System.Collections.Generic.Dictionary`2" />。</param>
666      <exception cref="T:System.ArgumentNullException">
667        <paramref name="dictionary" /> は null なので、</exception>
668    </member>
669    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.CopyTo(`1[],System.Int32)">
670      <summary>
671        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> の要素を既存の 1 次元の <see cref="T:System.Array" /> にコピーします。コピー操作は、配列内の指定したインデックスから始まります。</summary>
672      <param name="array">
673        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> から要素がコピーされる 1 次元の <see cref="T:System.Array" />。<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
674      <param name="index">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
675      <exception cref="T:System.ArgumentNullException">
676        <paramref name="array" /> は null なので、</exception>
677      <exception cref="T:System.ArgumentOutOfRangeException">
678        <paramref name="index" /> が 0 未満です。</exception>
679      <exception cref="T:System.ArgumentException">コピー元の <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> の要素数が、<paramref name="index" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。</exception>
680    </member>
681    <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Count">
682      <summary>
683        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> に格納されている要素の数を取得します。</summary>
684      <returns>
685        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> に格納されている要素の数。</returns>
686    </member>
687    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.GetEnumerator">
688      <summary>
689        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> を反復処理する列挙子を返します。</summary>
690      <returns>
691        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> の <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator" />。</returns>
692    </member>
693    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Add(`1)">
694      <summary>
695        <see cref="T:System.Collections.Generic.ICollection`1" /> に項目を追加します。この実装は常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
696      <param name="item">
697        <see cref="T:System.Collections.Generic.ICollection`1" /> に追加するオブジェクト。</param>
698      <exception cref="T:System.NotSupportedException">常にスローされます。</exception>
699    </member>
700    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Clear">
701      <summary>
702        <see cref="T:System.Collections.Generic.ICollection`1" /> からすべての項目を削除します。この実装は常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
703      <exception cref="T:System.NotSupportedException">常にスローされます。</exception>
704    </member>
705    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Contains(`1)">
706      <summary>
707        <see cref="T:System.Collections.Generic.ICollection`1" /> に特定の値が格納されているかどうかを判断します。</summary>
708      <returns>
709        <paramref name="item" /> が <see cref="T:System.Collections.Generic.ICollection`1" /> に存在する場合は true。それ以外の場合は false。</returns>
710      <param name="item">
711        <see cref="T:System.Collections.Generic.ICollection`1" /> 内で検索するオブジェクト。</param>
712    </member>
713    <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#IsReadOnly">
714      <summary>
715        <see cref="T:System.Collections.Generic.ICollection`1" /> が読み取り専用かどうかを示す値を取得します。</summary>
716      <returns>
717        <see cref="T:System.Collections.Generic.ICollection`1" /> が読み取り専用である場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> の既定の実装では、このプロパティは常に true を返します。</returns>
718    </member>
719    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Remove(`1)">
720      <summary>
721        <see cref="T:System.Collections.Generic.ICollection`1" /> 内で最初に見つかった特定のオブジェクトを削除します。この実装は常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
722      <returns>
723        <paramref name="item" /> が <see cref="T:System.Collections.Generic.ICollection`1" /> から正常に削除された場合は true。それ以外の場合は false。このメソッドは、<paramref name="item" /> が元の <see cref="T:System.Collections.Generic.ICollection`1" /> に見つからなかった場合にも false を返します。</returns>
724      <param name="item">
725        <see cref="T:System.Collections.Generic.ICollection`1" /> から削除するオブジェクト。</param>
726      <exception cref="T:System.NotSupportedException">常にスローされます。</exception>
727    </member>
728    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
729      <summary>コレクションを反復処理する列挙子を返します。</summary>
730      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
731    </member>
732    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
733      <summary>
734        <see cref="T:System.Collections.ICollection" /> の要素を <see cref="T:System.Array" /> にコピーします。<see cref="T:System.Array" /> の特定のインデックスからコピーが開始されます。</summary>
735      <param name="array">
736        <see cref="T:System.Collections.ICollection" /> から要素がコピーされる 1 次元の <see cref="T:System.Array" />。<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
737      <param name="index">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
738      <exception cref="T:System.ArgumentNullException">
739        <paramref name="array" /> は null なので、</exception>
740      <exception cref="T:System.ArgumentOutOfRangeException">
741        <paramref name="index" /> が 0 未満です。</exception>
742      <exception cref="T:System.ArgumentException">
743        <paramref name="array" /> が多次元です。または<paramref name="array" /> に 0 から始まるインデックス番号がありません。またはコピー元の <see cref="T:System.Collections.ICollection" /> の要素数が、<paramref name="index" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。またはコピー元の <see cref="T:System.Collections.ICollection" /> の型が、コピー先の <paramref name="array" /> の型に自動的にキャストできません。</exception>
744    </member>
745    <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#IsSynchronized">
746      <summary>
747        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。</summary>
748      <returns>
749        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) 場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> の既定の実装では、このプロパティは常に false を返します。</returns>
750    </member>
751    <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#SyncRoot">
752      <summary>
753        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクトを取得します。</summary>
754      <returns>
755        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクト。<see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> の既定の実装では、このプロパティは常に現在のインスタンスを返します。</returns>
756    </member>
757    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#IEnumerable#GetEnumerator">
758      <summary>コレクションを反復処理する列挙子を返します。</summary>
759      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.IEnumerator" />。</returns>
760    </member>
761    <member name="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator">
762      <summary>
763        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> の要素を列挙します。</summary>
764    </member>
765    <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.Current">
766      <summary>列挙子の現在位置の要素を取得します。</summary>
767      <returns>
768        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 内の、列挙子の現在位置にある要素。</returns>
769    </member>
770    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.Dispose">
771      <summary>
772        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator" /> によって使用されているすべてのリソースを解放します。</summary>
773    </member>
774    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.MoveNext">
775      <summary>列挙子を <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> の次の要素に進めます。</summary>
776      <returns>列挙子が次の要素に正常に進んだ場合は true。列挙子がコレクションの末尾を越えた場合は false。</returns>
777      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
778    </member>
779    <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Current">
780      <summary>列挙子の現在位置の要素を取得します。</summary>
781      <returns>コレクション内の、列挙子の現在位置にある要素。</returns>
782      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
783    </member>
784    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Reset">
785      <summary>列挙子を初期位置、つまりコレクションの最初の要素の前に設定します。</summary>
786      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
787    </member>
788    <member name="T:System.Collections.Generic.EqualityComparer`1">
789      <summary>
790        <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> ジェネリック インターフェイスの実装のための基本クラスを提供します。</summary>
791      <typeparam name="T">比較するオブジェクトの型。</typeparam>
792    </member>
793    <member name="M:System.Collections.Generic.EqualityComparer`1.#ctor">
794      <summary>
795        <see cref="T:System.Collections.Generic.EqualityComparer`1" /> クラスの新しいインスタンスを初期化します。</summary>
796    </member>
797    <member name="P:System.Collections.Generic.EqualityComparer`1.Default">
798      <summary>汎用引数で指定された型に対して、等値であるかどうかを比較するための既定の比較子を返します。</summary>
799      <returns>
800        <paramref name="T" /> 型の <see cref="T:System.Collections.Generic.EqualityComparer`1" /> クラスの既定のインスタンス。</returns>
801    </member>
802    <member name="M:System.Collections.Generic.EqualityComparer`1.Equals(`0,`0)">
803      <summary>派生クラスでオーバーライドされた場合、<paramref name="T" /> 型の 2 つのオブジェクトが等しいかどうかを確認します。</summary>
804      <returns>指定したオブジェクトが等しい場合は true。それ以外の場合は false。</returns>
805      <param name="x">比較する最初のオブジェクト。</param>
806      <param name="y">比較する 2 番目のオブジェクト。</param>
807    </member>
808    <member name="M:System.Collections.Generic.EqualityComparer`1.GetHashCode(`0)">
809      <summary>派生クラスでオーバーライドされた場合、ハッシュ アルゴリズムや、ハッシュ テーブルなどのデータ構造体の指定したオブジェクトに使用するハッシュ関数として機能します。</summary>
810      <returns>指定したオブジェクトのハッシュ コード。</returns>
811      <param name="obj">ハッシュ コードを取得する対象となるオブジェクト。</param>
812      <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is null.</exception>
813    </member>
814    <member name="M:System.Collections.Generic.EqualityComparer`1.System#Collections#IEqualityComparer#Equals(System.Object,System.Object)">
815      <summary>指定したオブジェクトが等しいかどうかを判断します。</summary>
816      <returns>指定したオブジェクトが等しい場合は true。それ以外の場合は false。</returns>
817      <param name="x">比較する最初のオブジェクト。</param>
818      <param name="y">比較する 2 番目のオブジェクト。</param>
819      <exception cref="T:System.ArgumentException">
820        <paramref name="x" /> or <paramref name="y" /> is of a type that cannot be cast to type <paramref name="T" />.</exception>
821    </member>
822    <member name="M:System.Collections.Generic.EqualityComparer`1.System#Collections#IEqualityComparer#GetHashCode(System.Object)">
823      <summary>指定したオブジェクトのハッシュ コードを返します。</summary>
824      <returns>指定したオブジェクトのハッシュ コード。</returns>
825      <param name="obj">ハッシュ コードが返される対象の <see cref="T:System.Object" />。</param>
826      <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is null.-or-<paramref name="obj" /> is of a type that cannot be cast to type <paramref name="T" />.</exception>
827    </member>
828    <member name="T:System.Collections.Generic.HashSet`1">
829      <summary>値のセットを表します。この種類の .NET Framework ソース コードを参照して、次を参照してください。、 Reference Sourceです。</summary>
830      <typeparam name="T">ハッシュ セット内の要素の型。</typeparam>
831    </member>
832    <member name="M:System.Collections.Generic.HashSet`1.#ctor">
833      <summary>
834        <see cref="T:System.Collections.Generic.HashSet`1" /> クラスの新しいインスタンスを初期化します。初期化後のインスタンスの内容は空です。このセット型には既定の等値比較子が使用されます。</summary>
835    </member>
836    <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
837      <summary>
838        <see cref="T:System.Collections.Generic.HashSet`1" /> クラスの新しいインスタンスを初期化します。このセット型には既定の等値比較子が使用されます。指定されたコレクションからコピーされた要素が格納され、コピー対象の要素数を格納できるだけの十分な容量が確保されます。</summary>
839      <param name="collection">新しいセットの要素のコピー元となるコレクション。</param>
840      <exception cref="T:System.ArgumentNullException">
841        <paramref name="collection" /> は null です。</exception>
842    </member>
843    <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0})">
844      <summary>
845        <see cref="T:System.Collections.Generic.HashSet`1" /> クラスの新しいインスタンスを初期化します。このセット型には指定した等値比較子が使用されます。指定されたコレクションからコピーされた要素が格納され、コピー対象の要素数を格納できるだけの十分な容量が確保されます。</summary>
846      <param name="collection">新しいセットの要素のコピー元となるコレクション。</param>
847      <param name="comparer">セット内の値を比較する際に使用する <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> の実装。このセット型に、既定の <see cref="T:System.Collections.Generic.EqualityComparer`1" /> の実装を使用する場合は null。</param>
848      <exception cref="T:System.ArgumentNullException">
849        <paramref name="collection" /> は null です。</exception>
850    </member>
851    <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEqualityComparer{`0})">
852      <summary>
853        <see cref="T:System.Collections.Generic.HashSet`1" /> クラスの新しいインスタンスを初期化します。初期化後のインスタンスの内容は空です。このセット型には指定した等値比較子が使用されます。</summary>
854      <param name="comparer">セット内の値を比較する際に使用する <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> の実装。このセット型に、既定の <see cref="T:System.Collections.Generic.EqualityComparer`1" /> の実装を使用する場合は null。</param>
855    </member>
856    <member name="M:System.Collections.Generic.HashSet`1.Add(`0)">
857      <summary>指定された要素をセットに追加します。</summary>
858      <returns>要素が <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトに追加された場合は true。要素が既に存在していた場合は false。</returns>
859      <param name="item">セットに追加する要素。</param>
860    </member>
861    <member name="M:System.Collections.Generic.HashSet`1.Clear">
862      <summary>
863        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトからすべての要素を削除します。</summary>
864    </member>
865    <member name="P:System.Collections.Generic.HashSet`1.Comparer">
866      <summary>セット内の値が等しいかどうかを確認するために使用する <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> オブジェクトを取得します。</summary>
867      <returns>セット内の値が等しいかどうかを確認するために使用する <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> オブジェクト。</returns>
868    </member>
869    <member name="M:System.Collections.Generic.HashSet`1.Contains(`0)">
870      <summary>指定した要素が <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトに含まれているかどうかを判断します。</summary>
871      <returns>
872        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトに指定された要素が格納されている場合は true。それ以外の場合は false。</returns>
873      <param name="item">
874        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクト内で検索する要素。</param>
875    </member>
876    <member name="M:System.Collections.Generic.HashSet`1.CopyTo(`0[])">
877      <summary>
878        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトの要素を配列にコピーします。</summary>
879      <param name="array">
880        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトからコピーされる要素のコピー先となる 1 次元配列。配列には、0 から始まるインデックスが設定されている必要があります。</param>
881      <exception cref="T:System.ArgumentNullException">
882        <paramref name="array" /> は null です。</exception>
883    </member>
884    <member name="M:System.Collections.Generic.HashSet`1.CopyTo(`0[],System.Int32)">
885      <summary>指定された配列インデックスを開始位置として、<see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトの要素を配列にコピーします。</summary>
886      <param name="array">
887        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトからコピーされる要素のコピー先となる 1 次元配列。配列には、0 から始まるインデックスが設定されている必要があります。</param>
888      <param name="arrayIndex">コピーの開始位置とする <paramref name="array" /> のインデックス (0 から始まる)。</param>
889      <exception cref="T:System.ArgumentNullException">
890        <paramref name="array" /> は null です。</exception>
891      <exception cref="T:System.ArgumentOutOfRangeException">
892        <paramref name="arrayIndex" /> が 0 未満です。</exception>
893      <exception cref="T:System.ArgumentException">
894        <paramref name="arrayIndex" /> が、コピー先の <paramref name="array" /> の長さを超えています。</exception>
895    </member>
896    <member name="M:System.Collections.Generic.HashSet`1.CopyTo(`0[],System.Int32,System.Int32)">
897      <summary>指定された配列インデックスを開始位置として、<see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトから、指定された数の要素を配列にコピーします。</summary>
898      <param name="array">
899        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトからコピーされる要素のコピー先となる 1 次元配列。配列には、0 から始まるインデックスが設定されている必要があります。</param>
900      <param name="arrayIndex">コピーの開始位置とする <paramref name="array" /> のインデックス (0 から始まる)。</param>
901      <param name="count">
902        <paramref name="array" /> にコピーする要素の数。</param>
903      <exception cref="T:System.ArgumentNullException">
904        <paramref name="array" /> は null です。</exception>
905      <exception cref="T:System.ArgumentOutOfRangeException">
906        <paramref name="arrayIndex" /> が 0 未満です。または<paramref name="count" /> が 0 未満です。</exception>
907      <exception cref="T:System.ArgumentException">
908        <paramref name="arrayIndex" /> が、コピー先の <paramref name="array" /> の長さを超えています。または<paramref name="count" /> が、コピー先の <paramref name="index" /> の <paramref name="array" /> から末尾までに格納できる数を超えています。</exception>
909    </member>
910    <member name="P:System.Collections.Generic.HashSet`1.Count">
911      <summary>セットに格納されている要素の数を取得します。</summary>
912      <returns>セットに格納されている要素の数。</returns>
913    </member>
914    <member name="M:System.Collections.Generic.HashSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0})">
915      <summary>現在の <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトから、指定されたコレクションに含まれる要素をすべて削除します。</summary>
916      <param name="other">
917        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトから削除する項目のコレクション。</param>
918      <exception cref="T:System.ArgumentNullException">
919        <paramref name="other" /> は null です。</exception>
920    </member>
921    <member name="M:System.Collections.Generic.HashSet`1.GetEnumerator">
922      <summary>
923        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトを反復処理する列挙子を返します。</summary>
924      <returns>
925        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトの <see cref="T:System.Collections.Generic.HashSet`1.Enumerator" /> オブジェクト。</returns>
926    </member>
927    <member name="M:System.Collections.Generic.HashSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0})">
928      <summary>現在の <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトを、そのオブジェクトと指定されたコレクションの両方に存在する要素だけが格納されるように変更します。</summary>
929      <param name="other">現在の <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトと比較するコレクション。</param>
930      <exception cref="T:System.ArgumentNullException">
931        <paramref name="other" /> は null です。</exception>
932    </member>
933    <member name="M:System.Collections.Generic.HashSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
934      <summary>
935        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトが、指定されたコレクションの真のサブセット (真部分集合) であるかどうかを判断します。</summary>
936      <returns>
937        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトが <paramref name="other" /> の真のサブセットである場合は true。それ以外の場合は false。</returns>
938      <param name="other">現在の <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトと比較するコレクション。</param>
939      <exception cref="T:System.ArgumentNullException">
940        <paramref name="other" /> は null です。</exception>
941    </member>
942    <member name="M:System.Collections.Generic.HashSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
943      <summary>
944        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトが、指定されたコレクションの真のスーパーセット (真上位集合) であるかどうかを判断します。</summary>
945      <returns>
946        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトが <paramref name="other" /> の真のスーパーセットである場合は true。それ以外の場合は false。</returns>
947      <param name="other">現在の <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトと比較するコレクション。</param>
948      <exception cref="T:System.ArgumentNullException">
949        <paramref name="other" /> は null です。</exception>
950    </member>
951    <member name="M:System.Collections.Generic.HashSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
952      <summary>
953        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトが、指定されたコレクションのサブセットであるかどうかを判断します。</summary>
954      <returns>
955        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトが <paramref name="other" /> のサブセットである場合は true。それ以外の場合は false。</returns>
956      <param name="other">現在の <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトと比較するコレクション。</param>
957      <exception cref="T:System.ArgumentNullException">
958        <paramref name="other" /> は null です。</exception>
959    </member>
960    <member name="M:System.Collections.Generic.HashSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
961      <summary>
962        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトが、指定されたコレクションのスーパーセットであるかどうかを判断します。</summary>
963      <returns>
964        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトが <paramref name="other" /> のスーパーセットである場合は true。それ以外の場合は false。</returns>
965      <param name="other">現在の <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトと比較するコレクション。</param>
966      <exception cref="T:System.ArgumentNullException">
967        <paramref name="other" /> は null です。</exception>
968    </member>
969    <member name="M:System.Collections.Generic.HashSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
970      <summary>現在の <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトと指定されたコレクションとが共通の要素を共有しているかどうかを判断します。</summary>
971      <returns>
972        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトと <paramref name="other" /> との間に共通する要素が 1 つでも存在する場合は true。それ以外の場合は false。</returns>
973      <param name="other">現在の <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトと比較するコレクション。</param>
974      <exception cref="T:System.ArgumentNullException">
975        <paramref name="other" /> は null です。</exception>
976    </member>
977    <member name="M:System.Collections.Generic.HashSet`1.Remove(`0)">
978      <summary>
979        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトから指定された要素を削除します。</summary>
980      <returns>要素が見つかり、正常に削除された場合は true。それ以外の場合は false。このメソッドは、<paramref name="item" /> が <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトに見つからない場合、false を返します。</returns>
981      <param name="item">削除する要素。</param>
982    </member>
983    <member name="M:System.Collections.Generic.HashSet`1.RemoveWhere(System.Predicate{`0})">
984      <summary>指定の述語によって定義された条件に一致するすべての要素を <see cref="T:System.Collections.Generic.HashSet`1" /> コレクションから削除します。</summary>
985      <returns>
986        <see cref="T:System.Collections.Generic.HashSet`1" /> コレクションから削除された要素数。</returns>
987      <param name="match">削除する要素の条件を定義する <see cref="T:System.Predicate`1" /> デリゲート。</param>
988      <exception cref="T:System.ArgumentNullException">
989        <paramref name="match" /> は null です。</exception>
990    </member>
991    <member name="M:System.Collections.Generic.HashSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
992      <summary>
993        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトと指定されたコレクションに同じ要素が存在するかどうかを判断します。</summary>
994      <returns>
995        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトが <paramref name="other" /> と等しい場合は true。それ以外の場合は false。</returns>
996      <param name="other">現在の <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトと比較するコレクション。</param>
997      <exception cref="T:System.ArgumentNullException">
998        <paramref name="other" /> は null です。</exception>
999    </member>
1000    <member name="M:System.Collections.Generic.HashSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
1001      <summary>現在の <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトを、そのオブジェクトと指定されたコレクションの (両方に存在するのではなく) どちらか一方に存在する要素だけが格納されるように変更します。</summary>
1002      <param name="other">現在の <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトと比較するコレクション。</param>
1003      <exception cref="T:System.ArgumentNullException">
1004        <paramref name="other" /> は null です。</exception>
1005    </member>
1006    <member name="M:System.Collections.Generic.HashSet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
1007      <summary>
1008        <see cref="T:System.Collections.Generic.ICollection`1" /> オブジェクトに項目を追加します。</summary>
1009      <param name="item">
1010        <see cref="T:System.Collections.Generic.ICollection`1" /> オブジェクトに追加するオブジェクト。</param>
1011      <exception cref="T:System.NotSupportedException">
1012        <see cref="T:System.Collections.Generic.ICollection`1" /> は読み取り専用です。</exception>
1013    </member>
1014    <member name="P:System.Collections.Generic.HashSet`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
1015      <summary>コレクションが読み取り専用かどうかを示す値を取得します。</summary>
1016      <returns>コレクションが読み取り専用の場合は true。それ以外の場合は false。</returns>
1017    </member>
1018    <member name="M:System.Collections.Generic.HashSet`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
1019      <summary>コレクションを反復処理する列挙子を返します。</summary>
1020      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.Generic.IEnumerator`1" /> オブジェクト。</returns>
1021    </member>
1022    <member name="M:System.Collections.Generic.HashSet`1.System#Collections#IEnumerable#GetEnumerator">
1023      <summary>コレクションを反復処理する列挙子を返します。</summary>
1024      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.IEnumerator" /> オブジェクト。</returns>
1025    </member>
1026    <member name="M:System.Collections.Generic.HashSet`1.TrimExcess">
1027      <summary>
1028        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトの容量を、そこに格納されている実際の要素数を最も近い実装に固有の値に切り上げて設定します。</summary>
1029    </member>
1030    <member name="M:System.Collections.Generic.HashSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0})">
1031      <summary>現在の <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトに変更を加えて、そのオブジェクト自体、指定されたコレクション、またはそれら両方に存在するすべての要素を格納するようにします。</summary>
1032      <param name="other">現在の <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトと比較するコレクション。</param>
1033      <exception cref="T:System.ArgumentNullException">
1034        <paramref name="other" /> は null です。</exception>
1035    </member>
1036    <member name="T:System.Collections.Generic.HashSet`1.Enumerator">
1037      <summary>
1038        <see cref="T:System.Collections.Generic.HashSet`1" /> オブジェクトの要素を列挙します。</summary>
1039      <filterpriority>2</filterpriority>
1040    </member>
1041    <member name="P:System.Collections.Generic.HashSet`1.Enumerator.Current">
1042      <summary>列挙子の現在位置の要素を取得します。</summary>
1043      <returns>
1044        <see cref="T:System.Collections.Generic.HashSet`1" /> コレクション内の、列挙子の現在位置にある要素。</returns>
1045    </member>
1046    <member name="M:System.Collections.Generic.HashSet`1.Enumerator.Dispose">
1047      <summary>
1048        <see cref="T:System.Collections.Generic.HashSet`1.Enumerator" /> オブジェクトによって使用されているすべてのリソースを解放します。</summary>
1049    </member>
1050    <member name="M:System.Collections.Generic.HashSet`1.Enumerator.MoveNext">
1051      <summary>列挙子を <see cref="T:System.Collections.Generic.HashSet`1" /> コレクションの次の要素に進めます。</summary>
1052      <returns>列挙子が次の要素に正常に進んだ場合は true。列挙子がコレクションの末尾を越えた場合は false。</returns>
1053      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
1054    </member>
1055    <member name="P:System.Collections.Generic.HashSet`1.Enumerator.System#Collections#IEnumerator#Current">
1056      <summary>列挙子の現在位置の要素を取得します。</summary>
1057      <returns>コレクション内の列挙子の現在位置にある、<see cref="T:System.Object" /> としての要素。</returns>
1058      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
1059    </member>
1060    <member name="M:System.Collections.Generic.HashSet`1.Enumerator.System#Collections#IEnumerator#Reset">
1061      <summary>列挙子を初期位置、つまりコレクションの最初の要素の前に設定します。</summary>
1062      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
1063    </member>
1064    <member name="T:System.Collections.Generic.LinkedList`1">
1065      <summary>ダブルリンク リストを表します。</summary>
1066      <typeparam name="T">リンク リストの要素の型を示します。</typeparam>
1067      <filterpriority>1</filterpriority>
1068    </member>
1069    <member name="M:System.Collections.Generic.LinkedList`1.#ctor">
1070      <summary>
1071        <see cref="T:System.Collections.Generic.LinkedList`1" /> クラスの新しい空のインスタンスを初期化します。</summary>
1072    </member>
1073    <member name="M:System.Collections.Generic.LinkedList`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
1074      <summary>指定した <see cref="T:System.Collections.IEnumerable" /> からコピーした要素を格納し、コピーされる要素の数を格納できるだけの容量を備えた、<see cref="T:System.Collections.Generic.LinkedList`1" /> クラスの新しいインスタンスを初期化します。</summary>
1075      <param name="collection">新しい <see cref="T:System.Collections.Generic.LinkedList`1" /> に要素がコピーされた <see cref="T:System.Collections.IEnumerable" />。</param>
1076      <exception cref="T:System.ArgumentNullException">
1077        <paramref name="collection" /> は null なので、</exception>
1078    </member>
1079    <member name="M:System.Collections.Generic.LinkedList`1.AddAfter(System.Collections.Generic.LinkedListNode{`0},System.Collections.Generic.LinkedListNode{`0})">
1080      <summary>
1081        <see cref="T:System.Collections.Generic.LinkedList`1" /> 内の指定した既存のノードの後に、指定した新しいノードを追加します。</summary>
1082      <param name="node">
1083        <paramref name="newNode" /> を挿入する位置の直前の <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
1084      <param name="newNode">
1085        <see cref="T:System.Collections.Generic.LinkedList`1" /> に追加する新しい <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
1086      <exception cref="T:System.ArgumentNullException">
1087        <paramref name="node" /> は null なので、または<paramref name="newNode" /> は null なので、</exception>
1088      <exception cref="T:System.InvalidOperationException">
1089        <paramref name="node" /> は、現在の <see cref="T:System.Collections.Generic.LinkedList`1" /> に含まれていません。または<paramref name="newNode" /> は他の <see cref="T:System.Collections.Generic.LinkedList`1" /> に属しています。</exception>
1090    </member>
1091    <member name="M:System.Collections.Generic.LinkedList`1.AddAfter(System.Collections.Generic.LinkedListNode{`0},`0)">
1092      <summary>
1093        <see cref="T:System.Collections.Generic.LinkedList`1" /> 内の指定した既存のノードの後に、指定した値を含んだ新しいノードを追加します。</summary>
1094      <returns>
1095        <paramref name="value" /> を含んだ新しい <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</returns>
1096      <param name="node">
1097        <paramref name="value" /> を含んだ新しい <see cref="T:System.Collections.Generic.LinkedListNode`1" /> を挿入する位置の直前の <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
1098      <param name="value">
1099        <see cref="T:System.Collections.Generic.LinkedList`1" /> に追加する値。</param>
1100      <exception cref="T:System.ArgumentNullException">
1101        <paramref name="node" /> は null なので、</exception>
1102      <exception cref="T:System.InvalidOperationException">
1103        <paramref name="node" /> は、現在の <see cref="T:System.Collections.Generic.LinkedList`1" /> に含まれていません。</exception>
1104    </member>
1105    <member name="M:System.Collections.Generic.LinkedList`1.AddBefore(System.Collections.Generic.LinkedListNode{`0},System.Collections.Generic.LinkedListNode{`0})">
1106      <summary>
1107        <see cref="T:System.Collections.Generic.LinkedList`1" /> 内の指定した既存のノードの前に、指定した新しいノードを追加します。</summary>
1108      <param name="node">
1109        <paramref name="newNode" /> を挿入する位置の直後の <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
1110      <param name="newNode">
1111        <see cref="T:System.Collections.Generic.LinkedList`1" /> に追加する新しい <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
1112      <exception cref="T:System.ArgumentNullException">
1113        <paramref name="node" /> は null なので、または<paramref name="newNode" /> は null なので、</exception>
1114      <exception cref="T:System.InvalidOperationException">
1115        <paramref name="node" /> は、現在の <see cref="T:System.Collections.Generic.LinkedList`1" /> に含まれていません。または<paramref name="newNode" /> は他の <see cref="T:System.Collections.Generic.LinkedList`1" /> に属しています。</exception>
1116    </member>
1117    <member name="M:System.Collections.Generic.LinkedList`1.AddBefore(System.Collections.Generic.LinkedListNode{`0},`0)">
1118      <summary>
1119        <see cref="T:System.Collections.Generic.LinkedList`1" /> 内の指定した既存のノードの前に、指定した値を含んだ新しいノードを追加します。</summary>
1120      <returns>
1121        <paramref name="value" /> を含んだ新しい <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</returns>
1122      <param name="node">
1123        <paramref name="value" /> を含んだ新しい <see cref="T:System.Collections.Generic.LinkedListNode`1" /> を挿入する位置の直後の <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
1124      <param name="value">
1125        <see cref="T:System.Collections.Generic.LinkedList`1" /> に追加する値。</param>
1126      <exception cref="T:System.ArgumentNullException">
1127        <paramref name="node" /> は null なので、</exception>
1128      <exception cref="T:System.InvalidOperationException">
1129        <paramref name="node" /> は、現在の <see cref="T:System.Collections.Generic.LinkedList`1" /> に含まれていません。</exception>
1130    </member>
1131    <member name="M:System.Collections.Generic.LinkedList`1.AddFirst(System.Collections.Generic.LinkedListNode{`0})">
1132      <summary>
1133        <see cref="T:System.Collections.Generic.LinkedList`1" /> の先頭に指定した新しいノードを追加します。</summary>
1134      <param name="node">
1135        <see cref="T:System.Collections.Generic.LinkedList`1" /> の先頭に追加する新しい <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
1136      <exception cref="T:System.ArgumentNullException">
1137        <paramref name="node" /> は null なので、</exception>
1138      <exception cref="T:System.InvalidOperationException">
1139        <paramref name="node" /> は他の <see cref="T:System.Collections.Generic.LinkedList`1" /> に属しています。</exception>
1140    </member>
1141    <member name="M:System.Collections.Generic.LinkedList`1.AddFirst(`0)">
1142      <summary>
1143        <see cref="T:System.Collections.Generic.LinkedList`1" /> の先頭に、指定した値を含んだ新しいノードを追加します。</summary>
1144      <returns>
1145        <paramref name="value" /> を含んだ新しい <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</returns>
1146      <param name="value">
1147        <see cref="T:System.Collections.Generic.LinkedList`1" /> の先頭に追加する値。</param>
1148    </member>
1149    <member name="M:System.Collections.Generic.LinkedList`1.AddLast(System.Collections.Generic.LinkedListNode{`0})">
1150      <summary>
1151        <see cref="T:System.Collections.Generic.LinkedList`1" /> の末尾に、指定した新しいノードを追加します。</summary>
1152      <param name="node">
1153        <see cref="T:System.Collections.Generic.LinkedList`1" /> の末尾に追加する新しい <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
1154      <exception cref="T:System.ArgumentNullException">
1155        <paramref name="node" /> は null なので、</exception>
1156      <exception cref="T:System.InvalidOperationException">
1157        <paramref name="node" /> は他の <see cref="T:System.Collections.Generic.LinkedList`1" /> に属しています。</exception>
1158    </member>
1159    <member name="M:System.Collections.Generic.LinkedList`1.AddLast(`0)">
1160      <summary>
1161        <see cref="T:System.Collections.Generic.LinkedList`1" /> の末尾に、指定した値を含んだ新しいノードを追加します。</summary>
1162      <returns>
1163        <paramref name="value" /> を含んだ新しい <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</returns>
1164      <param name="value">
1165        <see cref="T:System.Collections.Generic.LinkedList`1" /> の末尾に追加する値。</param>
1166    </member>
1167    <member name="M:System.Collections.Generic.LinkedList`1.Clear">
1168      <summary>
1169        <see cref="T:System.Collections.Generic.LinkedList`1" /> からすべてのノードを削除します。</summary>
1170    </member>
1171    <member name="M:System.Collections.Generic.LinkedList`1.Contains(`0)">
1172      <summary>ある値が <see cref="T:System.Collections.Generic.LinkedList`1" /> 内に存在するかどうかを判断します。</summary>
1173      <returns>
1174        <paramref name="value" /> が <see cref="T:System.Collections.Generic.LinkedList`1" /> に存在する場合は true。それ以外の場合は false。</returns>
1175      <param name="value">
1176        <see cref="T:System.Collections.Generic.LinkedList`1" /> 内で検索される値。参照型の場合、null の値を使用できます。</param>
1177    </member>
1178    <member name="M:System.Collections.Generic.LinkedList`1.CopyTo(`0[],System.Int32)">
1179      <summary>
1180        <see cref="T:System.Collections.Generic.LinkedList`1" /> 全体を互換性のある 1 次元の <see cref="T:System.Array" /> にコピーします。コピー操作は、コピー先の配列の指定したインデックスから始まります。</summary>
1181      <param name="array">
1182        <see cref="T:System.Collections.Generic.LinkedList`1" /> から要素がコピーされる 1 次元の <see cref="T:System.Array" />。<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
1183      <param name="index">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
1184      <exception cref="T:System.ArgumentNullException">
1185        <paramref name="array" /> は null なので、</exception>
1186      <exception cref="T:System.ArgumentOutOfRangeException">
1187        <paramref name="index" /> が 0 未満です。</exception>
1188      <exception cref="T:System.ArgumentException">コピー元の <see cref="T:System.Collections.Generic.LinkedList`1" /> の要素数が、<paramref name="index" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。</exception>
1189    </member>
1190    <member name="P:System.Collections.Generic.LinkedList`1.Count">
1191      <summary>
1192        <see cref="T:System.Collections.Generic.LinkedList`1" /> に実際に格納されているノードの数を取得します。</summary>
1193      <returns>
1194        <see cref="T:System.Collections.Generic.LinkedList`1" /> に実際に格納されているノードの数。</returns>
1195    </member>
1196    <member name="M:System.Collections.Generic.LinkedList`1.Find(`0)">
1197      <summary>指定した値を含む最初のノードを検索します。</summary>
1198      <returns>存在する場合は、指定した値を含む最初の <see cref="T:System.Collections.Generic.LinkedListNode`1" />。それ以外の場合は null。</returns>
1199      <param name="value">
1200        <see cref="T:System.Collections.Generic.LinkedList`1" /> 内で検索される値。</param>
1201    </member>
1202    <member name="M:System.Collections.Generic.LinkedList`1.FindLast(`0)">
1203      <summary>指定した値を含む最後のノードを検索します。</summary>
1204      <returns>存在する場合は、指定した値を含む最後の <see cref="T:System.Collections.Generic.LinkedListNode`1" />。それ以外の場合は null。</returns>
1205      <param name="value">
1206        <see cref="T:System.Collections.Generic.LinkedList`1" /> 内で検索される値。</param>
1207    </member>
1208    <member name="P:System.Collections.Generic.LinkedList`1.First">
1209      <summary>
1210        <see cref="T:System.Collections.Generic.LinkedList`1" /> の最初のノードを取得します。</summary>
1211      <returns>
1212        <see cref="T:System.Collections.Generic.LinkedList`1" /> の最初の <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</returns>
1213    </member>
1214    <member name="M:System.Collections.Generic.LinkedList`1.GetEnumerator">
1215      <summary>
1216        <see cref="T:System.Collections.Generic.LinkedList`1" /> を反復処理する列挙子を返します。</summary>
1217      <returns>
1218        <see cref="T:System.Collections.Generic.LinkedList`1" /> の <see cref="T:System.Collections.Generic.LinkedList`1.Enumerator" />。</returns>
1219    </member>
1220    <member name="P:System.Collections.Generic.LinkedList`1.Last">
1221      <summary>
1222        <see cref="T:System.Collections.Generic.LinkedList`1" /> ノードの最後のノードを取得します。</summary>
1223      <returns>
1224        <see cref="T:System.Collections.Generic.LinkedList`1" /> の最後の <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</returns>
1225    </member>
1226    <member name="M:System.Collections.Generic.LinkedList`1.Remove(System.Collections.Generic.LinkedListNode{`0})">
1227      <summary>指定したノードを <see cref="T:System.Collections.Generic.LinkedList`1" /> から削除します。</summary>
1228      <param name="node">
1229        <see cref="T:System.Collections.Generic.LinkedList`1" /> から削除する <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
1230      <exception cref="T:System.ArgumentNullException">
1231        <paramref name="node" /> は null なので、</exception>
1232      <exception cref="T:System.InvalidOperationException">
1233        <paramref name="node" /> は、現在の <see cref="T:System.Collections.Generic.LinkedList`1" /> に含まれていません。</exception>
1234    </member>
1235    <member name="M:System.Collections.Generic.LinkedList`1.Remove(`0)">
1236      <summary>
1237        <see cref="T:System.Collections.Generic.LinkedList`1" /> 内で最初に見つかった指定の値を削除します。</summary>
1238      <returns>
1239        <paramref name="value" /> を含んだ要素が正常に削除された場合は true。それ以外の場合は false。このメソッドは、<paramref name="value" /> が元の <see cref="T:System.Collections.Generic.LinkedList`1" /> に見つからなかった場合にも false を返します。</returns>
1240      <param name="value">
1241        <see cref="T:System.Collections.Generic.LinkedList`1" /> から削除する値。</param>
1242    </member>
1243    <member name="M:System.Collections.Generic.LinkedList`1.RemoveFirst">
1244      <summary>
1245        <see cref="T:System.Collections.Generic.LinkedList`1" /> の先頭にあるノードを削除します。</summary>
1246      <exception cref="T:System.InvalidOperationException">
1247        <see cref="T:System.Collections.Generic.LinkedList`1" /> が空です。</exception>
1248    </member>
1249    <member name="M:System.Collections.Generic.LinkedList`1.RemoveLast">
1250      <summary>
1251        <see cref="T:System.Collections.Generic.LinkedList`1" /> の末尾にあるノードを削除します。</summary>
1252      <exception cref="T:System.InvalidOperationException">
1253        <see cref="T:System.Collections.Generic.LinkedList`1" /> が空です。</exception>
1254    </member>
1255    <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#Generic#ICollection{T}#Add(`0)">
1256      <summary>
1257        <see cref="T:System.Collections.Generic.ICollection`1" /> の末尾にアイテムを追加します。</summary>
1258      <param name="value">
1259        <see cref="T:System.Collections.Generic.ICollection`1" /> の末尾に追加する値。</param>
1260    </member>
1261    <member name="P:System.Collections.Generic.LinkedList`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
1262      <summary>
1263        <see cref="T:System.Collections.Generic.ICollection`1" /> が読み取り専用かどうかを示す値を取得します。</summary>
1264      <returns>
1265        <see cref="T:System.Collections.Generic.ICollection`1" /> が読み取り専用である場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.LinkedList`1" /> の既定の実装では、このプロパティは常に false を返します。</returns>
1266    </member>
1267    <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
1268      <summary>コレクションを反復処理する列挙子を返します。</summary>
1269      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
1270    </member>
1271    <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
1272      <summary>
1273        <see cref="T:System.Collections.ICollection" /> の要素を <see cref="T:System.Array" /> にコピーします。<see cref="T:System.Array" /> の特定のインデックスからコピーが開始されます。</summary>
1274      <param name="array">
1275        <see cref="T:System.Collections.ICollection" /> から要素がコピーされる 1 次元の <see cref="T:System.Array" />。<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
1276      <param name="index">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
1277      <exception cref="T:System.ArgumentNullException">
1278        <paramref name="array" /> は null なので、</exception>
1279      <exception cref="T:System.ArgumentOutOfRangeException">
1280        <paramref name="index" /> が 0 未満です。</exception>
1281      <exception cref="T:System.ArgumentException">
1282        <paramref name="array" /> が多次元です。または<paramref name="array" /> に 0 から始まるインデックス番号がありません。またはコピー元の <see cref="T:System.Collections.ICollection" /> の要素数が、<paramref name="index" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。またはコピー元の <see cref="T:System.Collections.ICollection" /> の型が、コピー先の <paramref name="array" /> の型に自動的にキャストできません。</exception>
1283    </member>
1284    <member name="P:System.Collections.Generic.LinkedList`1.System#Collections#ICollection#IsSynchronized">
1285      <summary>
1286        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。</summary>
1287      <returns>
1288        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) 場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.LinkedList`1" /> の既定の実装では、このプロパティは常に false を返します。</returns>
1289    </member>
1290    <member name="P:System.Collections.Generic.LinkedList`1.System#Collections#ICollection#SyncRoot">
1291      <summary>
1292        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクトを取得します。</summary>
1293      <returns>
1294        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクト。<see cref="T:System.Collections.Generic.LinkedList`1" /> の既定の実装では、このプロパティは常に現在のインスタンスを返します。</returns>
1295    </member>
1296    <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#IEnumerable#GetEnumerator">
1297      <summary>コレクションとしてリンク リストを反復処理する列挙子を返します。</summary>
1298      <returns>コレクションとしてリンク リストを反復処理するために使用できる <see cref="T:System.Collections.IEnumerator" />。</returns>
1299    </member>
1300    <member name="T:System.Collections.Generic.LinkedList`1.Enumerator">
1301      <summary>
1302        <see cref="T:System.Collections.Generic.LinkedList`1" /> の要素を列挙します。</summary>
1303    </member>
1304    <member name="P:System.Collections.Generic.LinkedList`1.Enumerator.Current">
1305      <summary>列挙子の現在位置の要素を取得します。</summary>
1306      <returns>
1307        <see cref="T:System.Collections.Generic.LinkedList`1" /> 内の、列挙子の現在位置にある要素。</returns>
1308    </member>
1309    <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.Dispose">
1310      <summary>
1311        <see cref="T:System.Collections.Generic.LinkedList`1.Enumerator" /> によって使用されているすべてのリソースを解放します。</summary>
1312    </member>
1313    <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.MoveNext">
1314      <summary>列挙子を <see cref="T:System.Collections.Generic.LinkedList`1" /> の次の要素に進めます。</summary>
1315      <returns>列挙子が次の要素に正常に進んだ場合は true。列挙子がコレクションの末尾を越えた場合は false。</returns>
1316      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
1317    </member>
1318    <member name="P:System.Collections.Generic.LinkedList`1.Enumerator.System#Collections#IEnumerator#Current">
1319      <summary>列挙子の現在位置の要素を取得します。</summary>
1320      <returns>コレクション内の、列挙子の現在位置にある要素。</returns>
1321      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
1322    </member>
1323    <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.System#Collections#IEnumerator#Reset">
1324      <summary>列挙子を初期位置、つまりコレクションの最初の要素の前に設定します。このクラスは継承できません。</summary>
1325      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
1326    </member>
1327    <member name="T:System.Collections.Generic.LinkedListNode`1">
1328      <summary>
1329        <see cref="T:System.Collections.Generic.LinkedList`1" /> のノードを表します。このクラスは継承できません。</summary>
1330      <typeparam name="T">リンク リストの要素の型を示します。</typeparam>
1331      <filterpriority>1</filterpriority>
1332    </member>
1333    <member name="M:System.Collections.Generic.LinkedListNode`1.#ctor(`0)">
1334      <summary>指定した値を含んだ <see cref="T:System.Collections.Generic.LinkedListNode`1" /> クラスの新しいインスタンスを初期化します。</summary>
1335      <param name="value">
1336        <see cref="T:System.Collections.Generic.LinkedListNode`1" /> に格納する値。</param>
1337    </member>
1338    <member name="P:System.Collections.Generic.LinkedListNode`1.List">
1339      <summary>
1340        <see cref="T:System.Collections.Generic.LinkedListNode`1" /> が属する <see cref="T:System.Collections.Generic.LinkedList`1" /> を取得します。</summary>
1341      <returns>
1342        <see cref="T:System.Collections.Generic.LinkedListNode`1" /> が属する <see cref="T:System.Collections.Generic.LinkedList`1" /> への参照。<see cref="T:System.Collections.Generic.LinkedListNode`1" /> がリンクされていない場合は、null。</returns>
1343    </member>
1344    <member name="P:System.Collections.Generic.LinkedListNode`1.Next">
1345      <summary>
1346        <see cref="T:System.Collections.Generic.LinkedList`1" /> 内の次のノードを取得します。</summary>
1347      <returns>
1348        <see cref="T:System.Collections.Generic.LinkedList`1" /> 内の次のノードへの参照。現在のノードが <see cref="T:System.Collections.Generic.LinkedList`1" /> の最後の要素 (<see cref="P:System.Collections.Generic.LinkedList`1.Last" />) である場合は、null。</returns>
1349    </member>
1350    <member name="P:System.Collections.Generic.LinkedListNode`1.Previous">
1351      <summary>
1352        <see cref="T:System.Collections.Generic.LinkedList`1" /> 内の前のノードを取得します。</summary>
1353      <returns>
1354        <see cref="T:System.Collections.Generic.LinkedList`1" /> 内の前のノードへの参照。現在のノードが <see cref="T:System.Collections.Generic.LinkedList`1" /> の最初の要素 (<see cref="P:System.Collections.Generic.LinkedList`1.First" />) である場合は、null。</returns>
1355    </member>
1356    <member name="P:System.Collections.Generic.LinkedListNode`1.Value">
1357      <summary>ノードに格納された値を取得します。</summary>
1358      <returns>ノードに格納された値。</returns>
1359    </member>
1360    <member name="T:System.Collections.Generic.List`1">
1361      <summary>インデックスを使用してアクセスできる、厳密に型指定されたオブジェクトのリストを表します。リストの検索、並べ替え、および操作のためのメソッドを提供します。この種類の .NET Framework ソース コードを参照して、次を参照してください。、参照ソースです。</summary>
1362      <typeparam name="T">リスト内の要素の型。</typeparam>
1363      <filterpriority>1</filterpriority>
1364    </member>
1365    <member name="M:System.Collections.Generic.List`1.#ctor">
1366      <summary>空で、既定の初期量を備えた、<see cref="T:System.Collections.Generic.List`1" /> クラスの新しいインスタンスを初期化します。</summary>
1367    </member>
1368    <member name="M:System.Collections.Generic.List`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
1369      <summary>指定したコレクションからコピーした要素を格納し、コピーされる要素の数を格納できるだけの容量を備えた、<see cref="T:System.Collections.Generic.List`1" /> クラスの新しいインスタンスを初期化します。</summary>
1370      <param name="collection">新しいリストに要素がコピーされたコレクション。</param>
1371      <exception cref="T:System.ArgumentNullException">
1372        <paramref name="collection" /> は null です。</exception>
1373    </member>
1374    <member name="M:System.Collections.Generic.List`1.#ctor(System.Int32)">
1375      <summary>空で、指定した初期量を備えた、<see cref="T:System.Collections.Generic.List`1" /> クラスの新しいインスタンスを初期化します。</summary>
1376      <param name="capacity">新しいリストに格納できる要素の数。</param>
1377      <exception cref="T:System.ArgumentOutOfRangeException">
1378        <paramref name="capacity" /> が 0 未満です。</exception>
1379    </member>
1380    <member name="M:System.Collections.Generic.List`1.Add(`0)">
1381      <summary>
1382        <see cref="T:System.Collections.Generic.List`1" /> の末尾にオブジェクトを追加します。</summary>
1383      <param name="item">
1384        <see cref="T:System.Collections.Generic.List`1" /> の末尾に追加するオブジェクト。参照型の場合は null の値を使用できます。</param>
1385    </member>
1386    <member name="M:System.Collections.Generic.List`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
1387      <summary>指定したコレクションの要素を <see cref="T:System.Collections.Generic.List`1" /> の末尾に追加します。</summary>
1388      <param name="collection">
1389        <see cref="T:System.Collections.Generic.List`1" /> の末尾に要素が追加されるコレクション。コレクション自体を null にすることはできませんが、型 <paramref name="T" /> が参照型の場合、コレクションに格納する要素は null であってもかまいません。</param>
1390      <exception cref="T:System.ArgumentNullException">
1391        <paramref name="collection" /> は null です。</exception>
1392    </member>
1393    <member name="M:System.Collections.Generic.List`1.AsReadOnly">
1394      <summary>現在のコレクションの読み取り専用の <see cref="T:System.Collections.Generic.IList`1" /> ラッパーを返します。</summary>
1395      <returns>現在の <see cref="T:System.Collections.Generic.List`1" /> をラップする読み取り専用のラッパーとして動作する <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />。</returns>
1396    </member>
1397    <member name="M:System.Collections.Generic.List`1.BinarySearch(System.Int32,System.Int32,`0,System.Collections.Generic.IComparer{`0})">
1398      <summary>指定した比較子を使用して、並べ替えられた要素の <see cref="T:System.Collections.Generic.List`1" /> の 1 つの要素の範囲を検索し、その要素の 0 から始まるインデックスを返します。</summary>
1399      <returns>
1400        <paramref name="item" /> が見つかった場合は、並べ替えられた <see cref="T:System.Collections.Generic.List`1" /> 内の <paramref name="item" /> の 0 から始まるインデックス。見つからなかった場合は、負の値。これは、<paramref name="item" /> の次に大きい要素のインデックスのビットごとの補数です。ただし、大きい要素が存在しない場合は、<see cref="P:System.Collections.Generic.List`1.Count" /> のビットごとの補数です。</returns>
1401      <param name="index">検索範囲の開始位置を示す 0 から始まるインデックス。</param>
1402      <param name="count">検索する範囲の長さ。</param>
1403      <param name="item">検索するオブジェクト。参照型の場合は null の値を使用できます。</param>
1404      <param name="comparer">要素を比較する場合に使用する <see cref="T:System.Collections.Generic.IComparer`1" /> 実装。または、既定の比較子 <see cref="P:System.Collections.Generic.Comparer`1.Default" /> を使用する場合は null。</param>
1405      <exception cref="T:System.ArgumentOutOfRangeException">
1406        <paramref name="index" /> が 0 未満です。または<paramref name="count" /> が 0 未満です。 </exception>
1407      <exception cref="T:System.ArgumentException">
1408        <paramref name="index" /> および <paramref name="count" /> が <see cref="T:System.Collections.Generic.List`1" /> 内の有効な範囲を示していません。</exception>
1409      <exception cref="T:System.InvalidOperationException">
1410        <paramref name="comparer" /> が null です。また、既定の比較子 <see cref="P:System.Collections.Generic.Comparer`1.Default" /> は、<see cref="T:System.IComparable`1" /> ジェネリック インターフェイスの実装、または型 <paramref name="T" /> の <see cref="T:System.IComparable" /> インターフェイスの実装を見つけることができません。</exception>
1411    </member>
1412    <member name="M:System.Collections.Generic.List`1.BinarySearch(`0)">
1413      <summary>既定の比較子を使用して、並べ替えられた要素の <see cref="T:System.Collections.Generic.List`1" /> 全体を検索し、その要素の 0 から始まるインデックスを返します。</summary>
1414      <returns>
1415        <paramref name="item" /> が見つかった場合は、並べ替えられた <see cref="T:System.Collections.Generic.List`1" /> 内の <paramref name="item" /> の 0 から始まるインデックス。見つからなかった場合は、負の値。これは、<paramref name="item" /> の次に大きい要素のインデックスのビットごとの補数です。ただし、大きい要素が存在しない場合は、<see cref="P:System.Collections.Generic.List`1.Count" /> のビットごとの補数です。</returns>
1416      <param name="item">検索するオブジェクト。参照型の場合は null の値を使用できます。</param>
1417      <exception cref="T:System.InvalidOperationException">既定の比較子 <see cref="P:System.Collections.Generic.Comparer`1.Default" /> は、<see cref="T:System.IComparable`1" /> ジェネリック インターフェイスの実装、または型 <paramref name="T" /> の <see cref="T:System.IComparable" /> インターフェイスの実装を見つけることができません。</exception>
1418    </member>
1419    <member name="M:System.Collections.Generic.List`1.BinarySearch(`0,System.Collections.Generic.IComparer{`0})">
1420      <summary>指定した比較子を使用して、並べ替えられた要素の <see cref="T:System.Collections.Generic.List`1" /> 全体を検索し、その要素の 0 から始まるインデックスを返します。</summary>
1421      <returns>
1422        <paramref name="item" /> が見つかった場合は、並べ替えられた <see cref="T:System.Collections.Generic.List`1" /> 内の <paramref name="item" /> の 0 から始まるインデックス。見つからなかった場合は、負の値。これは、<paramref name="item" /> の次に大きい要素のインデックスのビットごとの補数です。ただし、大きい要素が存在しない場合は、<see cref="P:System.Collections.Generic.List`1.Count" /> のビットごとの補数です。</returns>
1423      <param name="item">検索するオブジェクト。参照型の場合は null の値を使用できます。</param>
1424      <param name="comparer">要素を比較する場合に使用する <see cref="T:System.Collections.Generic.IComparer`1" /> 実装。または既定の比較子 <see cref="P:System.Collections.Generic.Comparer`1.Default" /> を使用する場合は null。</param>
1425      <exception cref="T:System.InvalidOperationException">
1426        <paramref name="comparer" /> が null です。また、既定の比較子 <see cref="P:System.Collections.Generic.Comparer`1.Default" /> は、<see cref="T:System.IComparable`1" /> ジェネリック インターフェイスの実装、または型 <paramref name="T" /> の <see cref="T:System.IComparable" /> インターフェイスの実装を見つけることができません。</exception>
1427    </member>
1428    <member name="P:System.Collections.Generic.List`1.Capacity">
1429      <summary>内部データ構造体がサイズ変更せずに格納できる要素の合計数を取得または設定します。</summary>
1430      <returns>サイズ変更が必要となるまでに <see cref="T:System.Collections.Generic.List`1" /> に格納できる要素の数。</returns>
1431      <exception cref="T:System.ArgumentOutOfRangeException">
1432        <see cref="P:System.Collections.Generic.List`1.Capacity" /> が <see cref="P:System.Collections.Generic.List`1.Count" /> より小さい値に設定されています。</exception>
1433      <exception cref="T:System.OutOfMemoryException">システムのメモリが不足しています。</exception>
1434    </member>
1435    <member name="M:System.Collections.Generic.List`1.Clear">
1436      <summary>
1437        <see cref="T:System.Collections.Generic.List`1" /> からすべての要素を削除します。</summary>
1438    </member>
1439    <member name="M:System.Collections.Generic.List`1.Contains(`0)">
1440      <summary>ある要素が <see cref="T:System.Collections.Generic.List`1" /> 内に存在するかどうかを判断します。</summary>
1441      <returns>true if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.List`1" />; otherwise, false.</returns>
1442      <param name="item">
1443        <see cref="T:System.Collections.Generic.List`1" /> 内で検索するオブジェクト。参照型の場合は null の値を使用できます。</param>
1444    </member>
1445    <member name="M:System.Collections.Generic.List`1.CopyTo(System.Int32,`0[],System.Int32,System.Int32)">
1446      <summary>要素の範囲を <see cref="T:System.Collections.Generic.List`1" /> から互換性のある 1 次元の配列にコピーします。コピー操作は、コピー先の配列の指定したインデックスから始まります。</summary>
1447      <param name="index">コピーを開始するコピー元の <see cref="T:System.Collections.Generic.List`1" /> 内の、0 から始まるインデックス番号。</param>
1448      <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.List`1" />.<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
1449      <param name="arrayIndex">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
1450      <param name="count">コピーする要素の数。</param>
1451      <exception cref="T:System.ArgumentNullException">
1452        <paramref name="array" /> は null です。 </exception>
1453      <exception cref="T:System.ArgumentOutOfRangeException">
1454        <paramref name="index" /> が 0 未満です。または<paramref name="arrayIndex" /> が 0 未満です。または<paramref name="count" /> が 0 未満です。 </exception>
1455      <exception cref="T:System.ArgumentException">
1456        <paramref name="index" /> が、コピー元の <see cref="T:System.Collections.Generic.List`1" /> の <see cref="P:System.Collections.Generic.List`1.Count" /> 以上です。またはコピー元の <see cref="T:System.Collections.Generic.List`1" /> の <paramref name="index" /> から末尾までの要素の数が、コピー先の <paramref name="array" /> の <paramref name="arrayIndex" /> から末尾までに格納できる数よりも大きくなっています。</exception>
1457    </member>
1458    <member name="M:System.Collections.Generic.List`1.CopyTo(`0[])">
1459      <summary>
1460        <see cref="T:System.Collections.Generic.List`1" /> 全体を互換性のある 1 次元の配列にコピーします。コピー操作は、コピー先の配列の先頭から始まります。</summary>
1461      <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.List`1" />.<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
1462      <exception cref="T:System.ArgumentNullException">
1463        <paramref name="array" /> は null です。</exception>
1464      <exception cref="T:System.ArgumentException">コピー元の <see cref="T:System.Collections.Generic.List`1" /> の要素数が、コピー先の <paramref name="array" /> に格納できる要素の数を超えています。</exception>
1465    </member>
1466    <member name="M:System.Collections.Generic.List`1.CopyTo(`0[],System.Int32)">
1467      <summary>
1468        <see cref="T:System.Collections.Generic.List`1" /> 全体を、互換性のある 1 次元配列の、指定したインデックスから始まる位置にコピーします。</summary>
1469      <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.List`1" />.<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
1470      <param name="arrayIndex">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
1471      <exception cref="T:System.ArgumentNullException">
1472        <paramref name="array" /> は null です。</exception>
1473      <exception cref="T:System.ArgumentOutOfRangeException">
1474        <paramref name="arrayIndex" /> が 0 未満です。</exception>
1475      <exception cref="T:System.ArgumentException">コピー元の <see cref="T:System.Collections.Generic.List`1" /> の要素数が、<paramref name="arrayIndex" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。</exception>
1476    </member>
1477    <member name="P:System.Collections.Generic.List`1.Count">
1478      <summary>
1479        <see cref="T:System.Collections.Generic.List`1" /> に格納されている要素の数を取得します。</summary>
1480      <returns>
1481        <see cref="T:System.Collections.Generic.List`1" /> に格納されている要素の数。</returns>
1482    </member>
1483    <member name="M:System.Collections.Generic.List`1.Exists(System.Predicate{`0})">
1484      <summary>
1485        <see cref="T:System.Collections.Generic.List`1" /> に、指定された述語によって定義された条件と一致する要素が含まれているかどうかを判断します。</summary>
1486      <returns>指定された述語によって定義された条件と一致する要素が少なくとも 1 つ、<see cref="T:System.Collections.Generic.List`1" /> に存在する場合は、true。それ以外の場合は false。</returns>
1487      <param name="match">検索する要素の条件を定義する <see cref="T:System.Predicate`1" /> デリゲート。</param>
1488      <exception cref="T:System.ArgumentNullException">
1489        <paramref name="match" /> は null です。</exception>
1490    </member>
1491    <member name="M:System.Collections.Generic.List`1.Find(System.Predicate{`0})">
1492      <summary>指定された述語によって定義された条件と一致する要素を検索し、<see cref="T:System.Collections.Generic.List`1" /> 全体の中で最もインデックス番号の小さい要素を返します。</summary>
1493      <returns>見つかった場合は、指定された述語によって定義された条件と一致する最初の要素。それ以外の場合は、型 <paramref name="T" /> の既定値。</returns>
1494      <param name="match">検索する要素の条件を定義する <see cref="T:System.Predicate`1" /> デリゲート。</param>
1495      <exception cref="T:System.ArgumentNullException">
1496        <paramref name="match" /> は null です。</exception>
1497    </member>
1498    <member name="M:System.Collections.Generic.List`1.FindAll(System.Predicate{`0})">
1499      <summary>指定された述語によって定義された条件と一致するすべての要素を取得します。</summary>
1500      <returns>指定した述語によって定義される条件に一致する要素が見つかった場合は、そのすべての要素を格納する <see cref="T:System.Collections.Generic.List`1" />。それ以外の場合は、空の <see cref="T:System.Collections.Generic.List`1" />。</returns>
1501      <param name="match">検索する要素の条件を定義する <see cref="T:System.Predicate`1" /> デリゲート。</param>
1502      <exception cref="T:System.ArgumentNullException">
1503        <paramref name="match" /> は null です。</exception>
1504    </member>
1505    <member name="M:System.Collections.Generic.List`1.FindIndex(System.Int32,System.Int32,System.Predicate{`0})">
1506      <summary>
1507        <see cref="T:System.Collections.Generic.List`1" /> の指定したインデックスから指定した要素数までの範囲内で、指定した述語によって定義される条件に一致する要素を検索し、最もインデックス番号の小さい要素の 0 から始まるインデックスを返します。</summary>
1508      <returns>
1509        <paramref name="match" /> で定義された条件と一致する要素が存在した場合、最もインデックス番号の小さい要素の 0 から始まるインデックス。それ以外の場合は –1。</returns>
1510      <param name="startIndex">検索の開始位置を示す 0 から始まるインデックス。</param>
1511      <param name="count">検索対象の範囲内にある要素の数。</param>
1512      <param name="match">検索する要素の条件を定義する <see cref="T:System.Predicate`1" /> デリゲート。</param>
1513      <exception cref="T:System.ArgumentNullException">
1514        <paramref name="match" /> は null です。</exception>
1515      <exception cref="T:System.ArgumentOutOfRangeException">
1516        <paramref name="startIndex" /> が、<see cref="T:System.Collections.Generic.List`1" /> の有効なインデックスの範囲外です。または<paramref name="count" /> が 0 未満です。または<paramref name="startIndex" /> および <paramref name="count" /> が <see cref="T:System.Collections.Generic.List`1" /> 内の有効な部分を指定していません。</exception>
1517    </member>
1518    <member name="M:System.Collections.Generic.List`1.FindIndex(System.Int32,System.Predicate{`0})">
1519      <summary>
1520        <see cref="T:System.Collections.Generic.List`1" /> の指定したインデックスから最後の要素までの範囲内で、指定した述語によって定義される条件に一致する要素を検索し、最もインデックス番号の小さい要素の 0 から始まるインデックスを返します。</summary>
1521      <returns>
1522        <paramref name="match" /> で定義された条件と一致する要素が存在した場合、最もインデックス番号の小さい要素の 0 から始まるインデックス。それ以外の場合は –1。</returns>
1523      <param name="startIndex">検索の開始位置を示す 0 から始まるインデックス。</param>
1524      <param name="match">検索する要素の条件を定義する <see cref="T:System.Predicate`1" /> デリゲート。</param>
1525      <exception cref="T:System.ArgumentNullException">
1526        <paramref name="match" /> は null です。</exception>
1527      <exception cref="T:System.ArgumentOutOfRangeException">
1528        <paramref name="startIndex" /> が、<see cref="T:System.Collections.Generic.List`1" /> の有効なインデックスの範囲外です。</exception>
1529    </member>
1530    <member name="M:System.Collections.Generic.List`1.FindIndex(System.Predicate{`0})">
1531      <summary>
1532        <see cref="T:System.Collections.Generic.List`1" /> 全体から、指定した述語によって定義される条件に一致する要素を検索し、最もインデックス番号の小さい要素の 0 から始まるインデックスを返します。</summary>
1533      <returns>
1534        <paramref name="match" /> で定義された条件と一致する要素が存在した場合、最もインデックス番号の小さい要素の 0 から始まるインデックス。それ以外の場合は –1。</returns>
1535      <param name="match">検索する要素の条件を定義する <see cref="T:System.Predicate`1" /> デリゲート。</param>
1536      <exception cref="T:System.ArgumentNullException">
1537        <paramref name="match" /> は null です。</exception>
1538    </member>
1539    <member name="M:System.Collections.Generic.List`1.FindLast(System.Predicate{`0})">
1540      <summary>指定された述語によって定義された条件と一致する要素を、<see cref="T:System.Collections.Generic.List`1" /> 全体を対象に検索し、最もインデックス番号の大きい要素を返します。</summary>
1541      <returns>見つかった場合は、指定された述語によって定義された条件と一致する最後の要素。それ以外の場合は、型 <paramref name="T" /> の既定値。</returns>
1542      <param name="match">検索する要素の条件を定義する <see cref="T:System.Predicate`1" /> デリゲート。</param>
1543      <exception cref="T:System.ArgumentNullException">
1544        <paramref name="match" /> は null です。</exception>
1545    </member>
1546    <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Int32,System.Int32,System.Predicate{`0})">
1547      <summary>
1548        <see cref="T:System.Collections.Generic.List`1" /> の指定したインデックスで終わる指定した要素数の範囲内で、指定した述語によって定義される条件に一致する要素を検索し、最もインデックス番号の大きい要素の 0 から始まるインデックスを返します。</summary>
1549      <returns>
1550        <paramref name="match" /> で定義された条件と一致する要素が存在する場合、最もインデックス番号の大きい要素の 0 から始まるインデックス。それ以外の場合は –1。</returns>
1551      <param name="startIndex">後方検索の開始位置を示す 0 から始まるインデックス。</param>
1552      <param name="count">検索対象の範囲内にある要素の数。</param>
1553      <param name="match">検索する要素の条件を定義する <see cref="T:System.Predicate`1" /> デリゲート。</param>
1554      <exception cref="T:System.ArgumentNullException">
1555        <paramref name="match" /> は null です。</exception>
1556      <exception cref="T:System.ArgumentOutOfRangeException">
1557        <paramref name="startIndex" /> が、<see cref="T:System.Collections.Generic.List`1" /> の有効なインデックスの範囲外です。または<paramref name="count" /> が 0 未満です。または<paramref name="startIndex" /> および <paramref name="count" /> が <see cref="T:System.Collections.Generic.List`1" /> 内の有効な部分を指定していません。</exception>
1558    </member>
1559    <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Int32,System.Predicate{`0})">
1560      <summary>
1561        <see cref="T:System.Collections.Generic.List`1" /> の先頭の要素から指定したインデックスまでの範囲内で、指定した述語によって定義される条件に一致する要素を検索し、最もインデックス番号の大きい要素の 0 から始まるインデックスを返します。</summary>
1562      <returns>
1563        <paramref name="match" /> で定義された条件と一致する要素が存在する場合、最もインデックス番号の大きい要素の 0 から始まるインデックス。それ以外の場合は –1。</returns>
1564      <param name="startIndex">後方検索の開始位置を示す 0 から始まるインデックス。</param>
1565      <param name="match">検索する要素の条件を定義する <see cref="T:System.Predicate`1" /> デリゲート。</param>
1566      <exception cref="T:System.ArgumentNullException">
1567        <paramref name="match" /> は null です。</exception>
1568      <exception cref="T:System.ArgumentOutOfRangeException">
1569        <paramref name="startIndex" /> が、<see cref="T:System.Collections.Generic.List`1" /> の有効なインデックスの範囲外です。</exception>
1570    </member>
1571    <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Predicate{`0})">
1572      <summary>
1573        <see cref="T:System.Collections.Generic.List`1" /> 全体から、指定した述語によって定義される条件に一致する要素を検索し、最もインデックス番号の大きい要素の 0 から始まるインデックスを返します。</summary>
1574      <returns>
1575        <paramref name="match" /> で定義された条件と一致する要素が存在する場合、最もインデックス番号の大きい要素の 0 から始まるインデックス。それ以外の場合は –1。</returns>
1576      <param name="match">検索する要素の条件を定義する <see cref="T:System.Predicate`1" /> デリゲート。</param>
1577      <exception cref="T:System.ArgumentNullException">
1578        <paramref name="match" /> は null です。</exception>
1579    </member>
1580    <member name="M:System.Collections.Generic.List`1.ForEach(System.Action{`0})">
1581      <summary>
1582        <see cref="T:System.Collections.Generic.List`1" /> の各要素に対して、指定された処理を実行します。</summary>
1583      <param name="action">
1584        <see cref="T:System.Collections.Generic.List`1" /> の各要素に対して実行する <see cref="T:System.Action`1" /> デリゲート。</param>
1585      <exception cref="T:System.ArgumentNullException">
1586        <paramref name="action" /> は null です。</exception>
1587    </member>
1588    <member name="M:System.Collections.Generic.List`1.GetEnumerator">
1589      <summary>
1590        <see cref="T:System.Collections.Generic.List`1" /> を反復処理する列挙子を返します。</summary>
1591      <returns>
1592        <see cref="T:System.Collections.Generic.List`1" /> の <see cref="T:System.Collections.Generic.List`1.Enumerator" />。</returns>
1593    </member>
1594    <member name="M:System.Collections.Generic.List`1.GetRange(System.Int32,System.Int32)">
1595      <summary>コピー元の <see cref="T:System.Collections.Generic.List`1" /> 内の、ある範囲の要素の簡易コピーを作成します。</summary>
1596      <returns>コピー元の <see cref="T:System.Collections.Generic.List`1" /> 内の、ある範囲の要素の簡易コピー。</returns>
1597      <param name="index">範囲が開始する位置の、0 から始まる <see cref="T:System.Collections.Generic.List`1" /> のインデックス番号。</param>
1598      <param name="count">範囲内の要素の数。</param>
1599      <exception cref="T:System.ArgumentOutOfRangeException">
1600        <paramref name="index" /> が 0 未満です。または<paramref name="count" /> が 0 未満です。</exception>
1601      <exception cref="T:System.ArgumentException">
1602        <paramref name="index" /> および <paramref name="count" /> が <see cref="T:System.Collections.Generic.List`1" /> 内の要素の有効範囲を示していません。</exception>
1603    </member>
1604    <member name="M:System.Collections.Generic.List`1.IndexOf(`0)">
1605      <summary>指定したオブジェクトを検索し、<see cref="T:System.Collections.Generic.List`1" /> 全体内で最初に見つかった位置の 0 から始まるインデックスを返します。</summary>
1606      <returns>The zero-based index of the first occurrence of <paramref name="item" /> within the entire <see cref="T:System.Collections.Generic.List`1" />, if found; otherwise, –1.</returns>
1607      <param name="item">
1608        <see cref="T:System.Collections.Generic.List`1" /> 内で検索するオブジェクト。参照型の場合は null の値を使用できます。</param>
1609    </member>
1610    <member name="M:System.Collections.Generic.List`1.IndexOf(`0,System.Int32)">
1611      <summary>指定したオブジェクトを検索し、指定したインデックスから最後の要素までの <see cref="T:System.Collections.Generic.List`1" /> 内の要素の範囲内で最初に出現する位置の 0 から始まるインデックス番号を返します。</summary>
1612      <returns>
1613        <paramref name="index" /> から最後の要素までの <see cref="T:System.Collections.Generic.List`1" /> 内の要素の範囲内で <paramref name="item" /> が見つかった場合は、最初に見つかった位置の 0 から始まるインデックス番号。それ以外の場合は –1。</returns>
1614      <param name="item">
1615        <see cref="T:System.Collections.Generic.List`1" /> 内で検索するオブジェクト。参照型の場合は null の値を使用できます。</param>
1616      <param name="index">検索の開始位置を示す 0 から始まるインデックス。空のリストでは 0 (ゼロ) は有効です。</param>
1617      <exception cref="T:System.ArgumentOutOfRangeException">
1618        <paramref name="index" /> が、<see cref="T:System.Collections.Generic.List`1" /> の有効なインデックスの範囲外です。</exception>
1619    </member>
1620    <member name="M:System.Collections.Generic.List`1.IndexOf(`0,System.Int32,System.Int32)">
1621      <summary>指定したオブジェクトを検索し、指定したインデックスから始まって指定した数の要素を格納する <see cref="T:System.Collections.Generic.List`1" /> 内の要素の範囲内で最初に出現する位置の 0 から始まるインデックス番号を返します。</summary>
1622      <returns>
1623        <paramref name="index" /> から始まって <paramref name="count" /> 個の要素を格納する <see cref="T:System.Collections.Generic.List`1" /> 内の要素の範囲内で <paramref name="item" /> が見つかった場合は、最初に見つかった位置の 0 から始まるインデックス番号。それ以外の場合は –1。</returns>
1624      <param name="item">
1625        <see cref="T:System.Collections.Generic.List`1" /> 内で検索するオブジェクト。参照型の場合は null の値を使用できます。</param>
1626      <param name="index">検索の開始位置を示す 0 から始まるインデックス。空のリストでは 0 (ゼロ) は有効です。</param>
1627      <param name="count">検索対象の範囲内にある要素の数。</param>
1628      <exception cref="T:System.ArgumentOutOfRangeException">
1629        <paramref name="index" /> が、<see cref="T:System.Collections.Generic.List`1" /> の有効なインデックスの範囲外です。または<paramref name="count" /> が 0 未満です。または<paramref name="index" /> および <paramref name="count" /> が <see cref="T:System.Collections.Generic.List`1" /> 内の有効な部分を指定していません。</exception>
1630    </member>
1631    <member name="M:System.Collections.Generic.List`1.Insert(System.Int32,`0)">
1632      <summary>
1633        <see cref="T:System.Collections.Generic.List`1" /> 内の指定したインデックスの位置に要素を挿入します。</summary>
1634      <param name="index">
1635        <paramref name="item" /> を挿入する位置の、0 から始まるインデックス番号。</param>
1636      <param name="item">挿入するオブジェクト。参照型の場合は null の値を使用できます。</param>
1637      <exception cref="T:System.ArgumentOutOfRangeException">
1638        <paramref name="index" /> が 0 未満です。または<paramref name="index" /> が <see cref="P:System.Collections.Generic.List`1.Count" /> より大きくなっています。</exception>
1639    </member>
1640    <member name="M:System.Collections.Generic.List`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0})">
1641      <summary>コレクションの要素を <see cref="T:System.Collections.Generic.List`1" /> 内の指定したインデックスの位置に挿入します。</summary>
1642      <param name="index">新しい要素が挿入される位置の 0 から始まるインデックス。</param>
1643      <param name="collection">
1644        <see cref="T:System.Collections.Generic.List`1" /> に要素を挿入するコレクション。コレクション自体を null にすることはできませんが、型 <paramref name="T" /> が参照型の場合、コレクションに格納する要素は null であってもかまいません。</param>
1645      <exception cref="T:System.ArgumentNullException">
1646        <paramref name="collection" /> は null です。</exception>
1647      <exception cref="T:System.ArgumentOutOfRangeException">
1648        <paramref name="index" /> が 0 未満です。または<paramref name="index" /> が <see cref="P:System.Collections.Generic.List`1.Count" /> より大きくなっています。</exception>
1649    </member>
1650    <member name="P:System.Collections.Generic.List`1.Item(System.Int32)">
1651      <summary>指定したインデックスにある要素を取得または設定します。</summary>
1652      <returns>指定したインデックス位置にある要素。</returns>
1653      <param name="index">取得または設定する要素の、0 から始まるインデックス番号。</param>
1654      <exception cref="T:System.ArgumentOutOfRangeException">
1655        <paramref name="index" /> が 0 未満です。または<paramref name="index" /> が <see cref="P:System.Collections.Generic.List`1.Count" /> 以上です。 </exception>
1656    </member>
1657    <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0)">
1658      <summary>指定したオブジェクトを検索し、<see cref="T:System.Collections.Generic.List`1" /> 全体内で最後に見つかった位置の 0 から始まるインデックスを返します。</summary>
1659      <returns>
1660        <see cref="T:System.Collections.Generic.List`1" /> 全体内で <paramref name="item" /> が見つかった場合は、最後に見つかった位置の 0 から始まるインデックス番号。それ以外の場合は –1。</returns>
1661      <param name="item">
1662        <see cref="T:System.Collections.Generic.List`1" /> 内で検索するオブジェクト。参照型の場合は null の値を使用できます。</param>
1663    </member>
1664    <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0,System.Int32)">
1665      <summary>指定したオブジェクトを検索し、最初の要素から、指定したインデックスまでの <see cref="T:System.Collections.Generic.List`1" /> 内の要素の範囲内で最後に出現する位置の 0 から始まるインデックス番号を返します。</summary>
1666      <returns>最初の要素から <paramref name="index" /> までの <see cref="T:System.Collections.Generic.List`1" /> 内の要素の範囲内で <paramref name="item" /> が見つかった場合は、最後に見つかった位置の 0 から始まるインデックス番号。それ以外の場合は –1。</returns>
1667      <param name="item">
1668        <see cref="T:System.Collections.Generic.List`1" /> 内で検索するオブジェクト。参照型の場合は null の値を使用できます。</param>
1669      <param name="index">後方検索の開始位置を示す 0 から始まるインデックス。</param>
1670      <exception cref="T:System.ArgumentOutOfRangeException">
1671        <paramref name="index" /> が、<see cref="T:System.Collections.Generic.List`1" /> の有効なインデックスの範囲外です。</exception>
1672    </member>
1673    <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0,System.Int32,System.Int32)">
1674      <summary>指定したオブジェクトを検索して、指定した数の要素を格納し、指定したインデックスの位置で終了する <see cref="T:System.Collections.Generic.List`1" /> 内の要素の範囲内で最後に出現する位置の 0 から始まるインデックス番号を返します。</summary>
1675      <returns>
1676        <paramref name="count" /> 個の要素を格納し、<paramref name="index" /> の位置で終了する <see cref="T:System.Collections.Generic.List`1" /> 内の要素の範囲内で <paramref name="item" /> が見つかった場合は、最後に見つかった位置の 0 から始まるインデックス番号。それ以外の場合は –1。</returns>
1677      <param name="item">
1678        <see cref="T:System.Collections.Generic.List`1" /> 内で検索するオブジェクト。参照型の場合は null の値を使用できます。</param>
1679      <param name="index">後方検索の開始位置を示す 0 から始まるインデックス。</param>
1680      <param name="count">検索対象の範囲内にある要素の数。</param>
1681      <exception cref="T:System.ArgumentOutOfRangeException">
1682        <paramref name="index" /> が、<see cref="T:System.Collections.Generic.List`1" /> の有効なインデックスの範囲外です。または<paramref name="count" /> が 0 未満です。または<paramref name="index" /> および <paramref name="count" /> が <see cref="T:System.Collections.Generic.List`1" /> 内の有効な部分を指定していません。</exception>
1683    </member>
1684    <member name="M:System.Collections.Generic.List`1.Remove(`0)">
1685      <summary>
1686        <see cref="T:System.Collections.Generic.List`1" /> 内で最初に見つかった特定のオブジェクトを削除します。</summary>
1687      <returns>
1688        <paramref name="item" /> が正常に削除された場合は true。それ以外の場合は false。This method also returns false if <paramref name="item" /> was not found in the <see cref="T:System.Collections.Generic.List`1" />.</returns>
1689      <param name="item">
1690        <see cref="T:System.Collections.Generic.List`1" /> から削除するオブジェクト。参照型の場合は null の値を使用できます。</param>
1691    </member>
1692    <member name="M:System.Collections.Generic.List`1.RemoveAll(System.Predicate{`0})">
1693      <summary>指定した述語によって定義される条件に一致するすべての要素を削除します。</summary>
1694      <returns>
1695        <see cref="T:System.Collections.Generic.List`1" /> から削除される要素の数。</returns>
1696      <param name="match">削除する要素の条件を定義する <see cref="T:System.Predicate`1" /> デリゲート。</param>
1697      <exception cref="T:System.ArgumentNullException">
1698        <paramref name="match" /> は null です。</exception>
1699    </member>
1700    <member name="M:System.Collections.Generic.List`1.RemoveAt(System.Int32)">
1701      <summary>
1702        <see cref="T:System.Collections.Generic.List`1" /> の指定したインデックスにある要素を削除します。</summary>
1703      <param name="index">削除する要素の 0 から始まるインデックス。</param>
1704      <exception cref="T:System.ArgumentOutOfRangeException">
1705        <paramref name="index" /> が 0 未満です。または<paramref name="index" /> が <see cref="P:System.Collections.Generic.List`1.Count" /> 以上です。</exception>
1706    </member>
1707    <member name="M:System.Collections.Generic.List`1.RemoveRange(System.Int32,System.Int32)">
1708      <summary>
1709        <see cref="T:System.Collections.Generic.List`1" /> から要素の範囲を削除します。</summary>
1710      <param name="index">削除する要素の範囲の開始位置を示す 0 から始まるインデックス。</param>
1711      <param name="count">削除する要素の数を指定します。</param>
1712      <exception cref="T:System.ArgumentOutOfRangeException">
1713        <paramref name="index" /> が 0 未満です。または<paramref name="count" /> が 0 未満です。</exception>
1714      <exception cref="T:System.ArgumentException">
1715        <paramref name="index" /> および <paramref name="count" /> が <see cref="T:System.Collections.Generic.List`1" /> 内の要素の有効範囲を示していません。</exception>
1716    </member>
1717    <member name="M:System.Collections.Generic.List`1.Reverse">
1718      <summary>
1719        <see cref="T:System.Collections.Generic.List`1" /> 全体の要素の順序を反転させます。</summary>
1720    </member>
1721    <member name="M:System.Collections.Generic.List`1.Reverse(System.Int32,System.Int32)">
1722      <summary>指定した範囲の要素の順序を反転させます。</summary>
1723      <param name="index">反転させる範囲の開始位置を示す 0 から始まるインデックス。</param>
1724      <param name="count">反転させる範囲内にある要素の数。</param>
1725      <exception cref="T:System.ArgumentOutOfRangeException">
1726        <paramref name="index" /> が 0 未満です。または<paramref name="count" /> が 0 未満です。 </exception>
1727      <exception cref="T:System.ArgumentException">
1728        <paramref name="index" /> および <paramref name="count" /> が <see cref="T:System.Collections.Generic.List`1" /> 内の要素の有効範囲を示していません。</exception>
1729    </member>
1730    <member name="M:System.Collections.Generic.List`1.Sort">
1731      <summary>既定の比較子を使用して、<see cref="T:System.Collections.Generic.List`1" /> 全体内の要素を並べ替えます。</summary>
1732      <exception cref="T:System.InvalidOperationException">既定の比較子 <see cref="P:System.Collections.Generic.Comparer`1.Default" /> は、<see cref="T:System.IComparable`1" /> ジェネリック インターフェイスの実装、または型 <paramref name="T" /> の <see cref="T:System.IComparable" /> インターフェイスの実装を見つけることができません。</exception>
1733    </member>
1734    <member name="M:System.Collections.Generic.List`1.Sort(System.Collections.Generic.IComparer{`0})">
1735      <summary>指定した比較子を使用して、<see cref="T:System.Collections.Generic.List`1" /> 全体内の要素を並べ替えます。</summary>
1736      <param name="comparer">要素を比較する場合に使用する <see cref="T:System.Collections.Generic.IComparer`1" /> 実装。または、既定の比較子 <see cref="P:System.Collections.Generic.Comparer`1.Default" /> を使用する場合は null。</param>
1737      <exception cref="T:System.InvalidOperationException">
1738        <paramref name="comparer" /> が null です。また、既定の比較子 <see cref="P:System.Collections.Generic.Comparer`1.Default" /> は、<see cref="T:System.IComparable`1" /> ジェネリック インターフェイスの実装、または型 <paramref name="T" /> の <see cref="T:System.IComparable" /> インターフェイスの実装を見つけることができません。</exception>
1739      <exception cref="T:System.ArgumentException">
1740        <paramref name="comparer" /> の実装によって並べ替え中にエラーが発生しました。たとえば、<paramref name="comparer" /> は項目を項目自身と比較する場合に 0 を返さない可能性があります。</exception>
1741    </member>
1742    <member name="M:System.Collections.Generic.List`1.Sort(System.Comparison{`0})">
1743      <summary>指定した <see cref="T:System.Comparison`1" /> を使用して、<see cref="T:System.Collections.Generic.List`1" /> 全体内の要素を並べ替えます。</summary>
1744      <param name="comparison">要素を比較する場合に使用する <see cref="T:System.Comparison`1" />。</param>
1745      <exception cref="T:System.ArgumentNullException">
1746        <paramref name="comparison" /> は null です。</exception>
1747      <exception cref="T:System.ArgumentException">
1748        <paramref name="comparison" /> の実装によって並べ替え中にエラーが発生しました。たとえば、<paramref name="comparison" /> は項目を項目自身と比較する場合に 0 を返さない可能性があります。</exception>
1749    </member>
1750    <member name="M:System.Collections.Generic.List`1.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0})">
1751      <summary>指定した比較子を使用して、<see cref="T:System.Collections.Generic.List`1" /> 内の要素の範囲内の要素を並べ替えます。</summary>
1752      <param name="index">並べ替える範囲の開始位置を示す 0 から始まるインデックス。</param>
1753      <param name="count">並べ替える範囲の長さ。</param>
1754      <param name="comparer">要素を比較する場合に使用する <see cref="T:System.Collections.Generic.IComparer`1" /> 実装。または、既定の比較子 <see cref="P:System.Collections.Generic.Comparer`1.Default" /> を使用する場合は null。</param>
1755      <exception cref="T:System.ArgumentOutOfRangeException">
1756        <paramref name="index" /> が 0 未満です。または<paramref name="count" /> が 0 未満です。</exception>
1757      <exception cref="T:System.ArgumentException">
1758        <paramref name="index" /> および <paramref name="count" /> が <see cref="T:System.Collections.Generic.List`1" /> 内の有効な範囲を指定していません。または<paramref name="comparer" /> の実装によって並べ替え中にエラーが発生しました。たとえば、<paramref name="comparer" /> は項目を項目自身と比較する場合に 0 を返さない可能性があります。</exception>
1759      <exception cref="T:System.InvalidOperationException">
1760        <paramref name="comparer" /> が null です。また、既定の比較子 <see cref="P:System.Collections.Generic.Comparer`1.Default" /> は、<see cref="T:System.IComparable`1" /> ジェネリック インターフェイスの実装、または型 <paramref name="T" /> の <see cref="T:System.IComparable" /> インターフェイスの実装を見つけることができません。</exception>
1761    </member>
1762    <member name="P:System.Collections.Generic.List`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
1763      <summary>
1764        <see cref="T:System.Collections.Generic.ICollection`1" /> が読み取り専用かどうかを示す値を取得します。</summary>
1765      <returns>
1766        <see cref="T:System.Collections.Generic.ICollection`1" /> が読み取り専用の場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.List`1" /> の既定の実装では、このプロパティは常に false を返します。</returns>
1767    </member>
1768    <member name="M:System.Collections.Generic.List`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
1769      <summary>コレクションを反復処理する列挙子を返します。</summary>
1770      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
1771    </member>
1772    <member name="M:System.Collections.Generic.List`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
1773      <summary>
1774        <see cref="T:System.Collections.ICollection" /> の要素を <see cref="T:System.Array" /> にコピーします。<see cref="T:System.Array" /> の特定のインデックスからコピーが開始されます。</summary>
1775      <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />.<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
1776      <param name="arrayIndex">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
1777      <exception cref="T:System.ArgumentNullException">
1778        <paramref name="array" /> は null です。</exception>
1779      <exception cref="T:System.ArgumentOutOfRangeException">
1780        <paramref name="arrayIndex" /> が 0 未満です。</exception>
1781      <exception cref="T:System.ArgumentException">
1782        <paramref name="array" /> が多次元です。または<paramref name="array" /> に 0 から始まるインデックス番号がありません。またはコピー元の <see cref="T:System.Collections.ICollection" /> の要素数が、<paramref name="arrayIndex" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。またはコピー元の <see cref="T:System.Collections.ICollection" /> の型が、コピー先の <paramref name="array" /> の型に自動的にキャストできません。</exception>
1783    </member>
1784    <member name="P:System.Collections.Generic.List`1.System#Collections#ICollection#IsSynchronized">
1785      <summary>
1786        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。</summary>
1787      <returns>true if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, false.<see cref="T:System.Collections.Generic.List`1" /> の既定の実装では、このプロパティは常に false を返します。</returns>
1788    </member>
1789    <member name="P:System.Collections.Generic.List`1.System#Collections#ICollection#SyncRoot">
1790      <summary>
1791        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクトを取得します。</summary>
1792      <returns>
1793        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクト。<see cref="T:System.Collections.Generic.List`1" /> の既定の実装では、このプロパティは常に現在のインスタンスを返します。</returns>
1794    </member>
1795    <member name="M:System.Collections.Generic.List`1.System#Collections#IEnumerable#GetEnumerator">
1796      <summary>コレクションを反復処理する列挙子を返します。</summary>
1797      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.IEnumerator" />。</returns>
1798    </member>
1799    <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Add(System.Object)">
1800      <summary>
1801        <see cref="T:System.Collections.IList" /> に項目を追加します。</summary>
1802      <returns>新しい要素が挿入された位置。</returns>
1803      <param name="item">
1804        <see cref="T:System.Collections.IList" /> に追加する <see cref="T:System.Object" />。</param>
1805      <exception cref="T:System.ArgumentException">
1806        <paramref name="item" /> が、<see cref="T:System.Collections.IList" /> に代入できない型です。</exception>
1807    </member>
1808    <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Contains(System.Object)">
1809      <summary>
1810        <see cref="T:System.Collections.IList" /> に特定の値が格納されているかどうかを判断します。</summary>
1811      <returns>true if <paramref name="item" /> is found in the <see cref="T:System.Collections.IList" />; otherwise, false.</returns>
1812      <param name="item">
1813        <see cref="T:System.Collections.IList" /> 内で検索される <see cref="T:System.Object" />。</param>
1814    </member>
1815    <member name="M:System.Collections.Generic.List`1.System#Collections#IList#IndexOf(System.Object)">
1816      <summary>
1817        <see cref="T:System.Collections.IList" /> 内での指定した項目のインデックスを調べます。</summary>
1818      <returns>リストに存在する場合は <paramref name="item" /> のインデックス。それ以外の場合は -1。</returns>
1819      <param name="item">
1820        <see cref="T:System.Collections.IList" /> 内で検索するオブジェクト。</param>
1821      <exception cref="T:System.ArgumentException">
1822        <paramref name="item" /> が、<see cref="T:System.Collections.IList" /> に代入できない型です。</exception>
1823    </member>
1824    <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Insert(System.Int32,System.Object)">
1825      <summary>指定したインデックスの <see cref="T:System.Collections.IList" /> に項目を挿入します。</summary>
1826      <param name="index">
1827        <paramref name="item" /> を挿入する位置の、0 から始まるインデックス番号。</param>
1828      <param name="item">
1829        <see cref="T:System.Collections.IList" /> に挿入するオブジェクト。</param>
1830      <exception cref="T:System.ArgumentOutOfRangeException">
1831        <paramref name="index" /> が <see cref="T:System.Collections.IList" /> の有効なインデックスではありません。 </exception>
1832      <exception cref="T:System.ArgumentException">
1833        <paramref name="item" /> が、<see cref="T:System.Collections.IList" /> に代入できない型です。</exception>
1834    </member>
1835    <member name="P:System.Collections.Generic.List`1.System#Collections#IList#IsFixedSize">
1836      <summary>
1837        <see cref="T:System.Collections.IList" /> が固定サイズかどうかを示す値を取得します。</summary>
1838      <returns>
1839        <see cref="T:System.Collections.IList" /> が固定サイズの場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.List`1" /> の既定の実装では、このプロパティは常に false を返します。</returns>
1840    </member>
1841    <member name="P:System.Collections.Generic.List`1.System#Collections#IList#IsReadOnly">
1842      <summary>
1843        <see cref="T:System.Collections.IList" /> が読み取り専用かどうかを示す値を取得します。</summary>
1844      <returns>
1845        <see cref="T:System.Collections.IList" /> が読み取り専用の場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.List`1" /> の既定の実装では、このプロパティは常に false を返します。</returns>
1846    </member>
1847    <member name="P:System.Collections.Generic.List`1.System#Collections#IList#Item(System.Int32)">
1848      <summary>指定したインデックスにある要素を取得または設定します。</summary>
1849      <returns>指定したインデックス位置にある要素。</returns>
1850      <param name="index">取得または設定する要素の、0 から始まるインデックス番号。</param>
1851      <exception cref="T:System.ArgumentOutOfRangeException">
1852        <paramref name="index" /> が <see cref="T:System.Collections.IList" /> の有効なインデックスではありません。</exception>
1853      <exception cref="T:System.ArgumentException">プロパティが設定されていて、<paramref name="value" /> が、<see cref="T:System.Collections.IList" /> に代入できない型です。</exception>
1854    </member>
1855    <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Remove(System.Object)">
1856      <summary>
1857        <see cref="T:System.Collections.IList" /> 内で最初に見つかった特定のオブジェクトを削除します。</summary>
1858      <param name="item">
1859        <see cref="T:System.Collections.IList" /> から削除するオブジェクト。</param>
1860      <exception cref="T:System.ArgumentException">
1861        <paramref name="item" /> が、<see cref="T:System.Collections.IList" /> に代入できない型です。</exception>
1862    </member>
1863    <member name="M:System.Collections.Generic.List`1.ToArray">
1864      <summary>
1865        <see cref="T:System.Collections.Generic.List`1" /> の要素を新しい配列にコピーします。</summary>
1866      <returns>
1867        <see cref="T:System.Collections.Generic.List`1" /> の要素のコピーを格納する配列。</returns>
1868    </member>
1869    <member name="M:System.Collections.Generic.List`1.TrimExcess">
1870      <summary>
1871        <see cref="T:System.Collections.Generic.List`1" /> 内にある実際の要素数がしきい値未満の場合は、容量をその数に設定します。</summary>
1872    </member>
1873    <member name="M:System.Collections.Generic.List`1.TrueForAll(System.Predicate{`0})">
1874      <summary>
1875        <see cref="T:System.Collections.Generic.List`1" /> 内のすべての要素が、指定した述語によって定義される条件に一致するかどうかを調べます。</summary>
1876      <returns>
1877        <see cref="T:System.Collections.Generic.List`1" /> 内のすべての要素が、指定した述語によって定義される条件に一致する場合は true。それ以外の場合は false。リストに要素がない場合、戻り値は true です。</returns>
1878      <param name="match">要素の条件を定義する <see cref="T:System.Predicate`1" /> デリゲート。</param>
1879      <exception cref="T:System.ArgumentNullException">
1880        <paramref name="match" /> は null です。</exception>
1881    </member>
1882    <member name="T:System.Collections.Generic.List`1.Enumerator">
1883      <summary>
1884        <see cref="T:System.Collections.Generic.List`1" /> の要素を列挙します。</summary>
1885    </member>
1886    <member name="P:System.Collections.Generic.List`1.Enumerator.Current">
1887      <summary>列挙子の現在位置の要素を取得します。</summary>
1888      <returns>
1889        <see cref="T:System.Collections.Generic.List`1" /> 内の、列挙子の現在位置にある要素。</returns>
1890    </member>
1891    <member name="M:System.Collections.Generic.List`1.Enumerator.Dispose">
1892      <summary>
1893        <see cref="T:System.Collections.Generic.List`1.Enumerator" /> によって使用されているすべてのリソースを解放します。</summary>
1894    </member>
1895    <member name="M:System.Collections.Generic.List`1.Enumerator.MoveNext">
1896      <summary>列挙子を <see cref="T:System.Collections.Generic.List`1" /> の次の要素に進めます。</summary>
1897      <returns>列挙子が次の要素に正常に進んだ場合は true。列挙子がコレクションの末尾を越えた場合は false。</returns>
1898      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
1899    </member>
1900    <member name="P:System.Collections.Generic.List`1.Enumerator.System#Collections#IEnumerator#Current">
1901      <summary>列挙子の現在位置の要素を取得します。</summary>
1902      <returns>
1903        <see cref="T:System.Collections.Generic.List`1" /> 内の、列挙子の現在位置にある要素。</returns>
1904      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
1905    </member>
1906    <member name="M:System.Collections.Generic.List`1.Enumerator.System#Collections#IEnumerator#Reset">
1907      <summary>列挙子を初期位置、つまりコレクションの最初の要素の前に設定します。</summary>
1908      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
1909    </member>
1910    <member name="T:System.Collections.Generic.Queue`1">
1911      <summary>オブジェクトの先入れ先出しコレクションを表します。</summary>
1912      <typeparam name="T">キュー内の要素の型を指定します。</typeparam>
1913      <filterpriority>1</filterpriority>
1914    </member>
1915    <member name="M:System.Collections.Generic.Queue`1.#ctor">
1916      <summary>空で、既定の初期量を備えた、<see cref="T:System.Collections.Generic.Queue`1" /> クラスの新しいインスタンスを初期化します。</summary>
1917    </member>
1918    <member name="M:System.Collections.Generic.Queue`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
1919      <summary>指定したコレクションからコピーした要素を格納し、コピーされる要素の数を格納できるだけの容量を備えた、<see cref="T:System.Collections.Generic.Queue`1" /> クラスの新しいインスタンスを初期化します。</summary>
1920      <param name="collection">新しい <see cref="T:System.Collections.Generic.Queue`1" /> に要素がコピーされたコレクション。</param>
1921      <exception cref="T:System.ArgumentNullException">
1922        <paramref name="collection" /> is null.</exception>
1923    </member>
1924    <member name="M:System.Collections.Generic.Queue`1.#ctor(System.Int32)">
1925      <summary>空で、指定した初期量を備えた、<see cref="T:System.Collections.Generic.Queue`1" /> クラスの新しいインスタンスを初期化します。</summary>
1926      <param name="capacity">
1927        <see cref="T:System.Collections.Generic.Queue`1" /> が格納できる要素数の初期値。</param>
1928      <exception cref="T:System.ArgumentOutOfRangeException">
1929        <paramref name="capacity" /> is less than zero.</exception>
1930    </member>
1931    <member name="M:System.Collections.Generic.Queue`1.Clear">
1932      <summary>
1933        <see cref="T:System.Collections.Generic.Queue`1" /> からすべてのオブジェクトを削除します。</summary>
1934      <filterpriority>1</filterpriority>
1935    </member>
1936    <member name="M:System.Collections.Generic.Queue`1.Contains(`0)">
1937      <summary>ある要素が <see cref="T:System.Collections.Generic.Queue`1" /> 内に存在するかどうかを判断します。</summary>
1938      <returns>
1939        <paramref name="item" /> が <see cref="T:System.Collections.Generic.Queue`1" /> に存在する場合は true。それ以外の場合は false。</returns>
1940      <param name="item">
1941        <see cref="T:System.Collections.Generic.Queue`1" /> 内で検索するオブジェクト。参照型の場合は null の値を使用できます。</param>
1942    </member>
1943    <member name="M:System.Collections.Generic.Queue`1.CopyTo(`0[],System.Int32)">
1944      <summary>
1945        <see cref="T:System.Collections.Generic.Queue`1" /> の要素を既存の 1 次元の <see cref="T:System.Array" /> にコピーします。コピー操作は、配列内の指定したインデックスから始まります。</summary>
1946      <param name="array">
1947        <see cref="T:System.Collections.Generic.Queue`1" /> からコピーされる要素のコピー先となる 1 次元の <see cref="T:System.Array" />。<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
1948      <param name="arrayIndex">コピーの開始位置とする <paramref name="array" /> のインデックス (0 から始まる)。</param>
1949      <exception cref="T:System.ArgumentNullException">
1950        <paramref name="array" /> is null.</exception>
1951      <exception cref="T:System.ArgumentOutOfRangeException">
1952        <paramref name="arrayIndex" /> is less than zero.</exception>
1953      <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.Queue`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
1954    </member>
1955    <member name="P:System.Collections.Generic.Queue`1.Count">
1956      <summary>
1957        <see cref="T:System.Collections.Generic.Queue`1" /> に格納されている要素の数を取得します。</summary>
1958      <returns>
1959        <see cref="T:System.Collections.Generic.Queue`1" /> に格納されている要素の数。</returns>
1960    </member>
1961    <member name="M:System.Collections.Generic.Queue`1.Dequeue">
1962      <summary>
1963        <see cref="T:System.Collections.Generic.Queue`1" /> の先頭にあるオブジェクトを削除し、返します。</summary>
1964      <returns>
1965        <see cref="T:System.Collections.Generic.Queue`1" /> の先頭から削除されたオブジェクト。</returns>
1966      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Queue`1" /> is empty.</exception>
1967    </member>
1968    <member name="M:System.Collections.Generic.Queue`1.Enqueue(`0)">
1969      <summary>
1970        <see cref="T:System.Collections.Generic.Queue`1" /> の末尾にオブジェクトを追加します。</summary>
1971      <param name="item">
1972        <see cref="T:System.Collections.Generic.Queue`1" /> に追加するオブジェクト。参照型の場合は null の値を使用できます。</param>
1973    </member>
1974    <member name="M:System.Collections.Generic.Queue`1.GetEnumerator">
1975      <summary>
1976        <see cref="T:System.Collections.Generic.Queue`1" /> を反復処理する列挙子を返します。</summary>
1977      <returns>
1978        <see cref="T:System.Collections.Generic.Queue`1" /> の <see cref="T:System.Collections.Generic.Queue`1.Enumerator" />。</returns>
1979    </member>
1980    <member name="M:System.Collections.Generic.Queue`1.Peek">
1981      <summary>
1982        <see cref="T:System.Collections.Generic.Queue`1" /> の先頭にあるオブジェクトを削除せずに返します。</summary>
1983      <returns>
1984        <see cref="T:System.Collections.Generic.Queue`1" /> の先頭にあるオブジェクト。</returns>
1985      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Queue`1" /> is empty.</exception>
1986    </member>
1987    <member name="M:System.Collections.Generic.Queue`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
1988      <summary>コレクションを反復処理する列挙子を返します。</summary>
1989      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
1990    </member>
1991    <member name="M:System.Collections.Generic.Queue`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
1992      <summary>
1993        <see cref="T:System.Collections.ICollection" /> の要素を <see cref="T:System.Array" /> にコピーします。<see cref="T:System.Array" /> の特定のインデックスからコピーが開始されます。</summary>
1994      <param name="array">
1995        <see cref="T:System.Collections.ICollection" /> からコピーされる要素のコピー先となる 1 次元の <see cref="T:System.Array" />。<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
1996      <param name="index">コピーの開始位置とする <paramref name="array" /> のインデックス (0 から始まる)。</param>
1997      <exception cref="T:System.ArgumentNullException">
1998        <paramref name="array" /> is null.</exception>
1999      <exception cref="T:System.ArgumentOutOfRangeException">
2000        <paramref name="index" /> is less than zero.</exception>
2001      <exception cref="T:System.ArgumentException">
2002        <paramref name="array" /> is multidimensional.-or-<paramref name="array" /> does not have zero-based indexing.-or-The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.-or-The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
2003    </member>
2004    <member name="P:System.Collections.Generic.Queue`1.System#Collections#ICollection#IsSynchronized">
2005      <summary>
2006        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。</summary>
2007      <returns>
2008        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) 場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.Queue`1" /> の既定の実装では、このプロパティは常に false を返します。</returns>
2009    </member>
2010    <member name="P:System.Collections.Generic.Queue`1.System#Collections#ICollection#SyncRoot">
2011      <summary>
2012        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクトを取得します。</summary>
2013      <returns>
2014        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクト。<see cref="T:System.Collections.Generic.Queue`1" /> の既定の実装では、このプロパティは常に現在のインスタンスを返します。</returns>
2015    </member>
2016    <member name="M:System.Collections.Generic.Queue`1.System#Collections#IEnumerable#GetEnumerator">
2017      <summary>コレクションを反復処理する列挙子を返します。</summary>
2018      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.IEnumerator" />。</returns>
2019    </member>
2020    <member name="M:System.Collections.Generic.Queue`1.ToArray">
2021      <summary>
2022        <see cref="T:System.Collections.Generic.Queue`1" /> の要素を新しい配列にコピーします。</summary>
2023      <returns>
2024        <see cref="T:System.Collections.Generic.Queue`1" /> からコピーした要素を格納する新しい配列。</returns>
2025    </member>
2026    <member name="M:System.Collections.Generic.Queue`1.TrimExcess">
2027      <summary>
2028        <see cref="T:System.Collections.Generic.Queue`1" /> 内にある実際の要素数が現在の容量の 90% 未満の場合は、容量をその数に設定します。</summary>
2029    </member>
2030    <member name="T:System.Collections.Generic.Queue`1.Enumerator">
2031      <summary>
2032        <see cref="T:System.Collections.Generic.Queue`1" /> の要素を列挙します。</summary>
2033    </member>
2034    <member name="P:System.Collections.Generic.Queue`1.Enumerator.Current">
2035      <summary>列挙子の現在位置の要素を取得します。</summary>
2036      <returns>
2037        <see cref="T:System.Collections.Generic.Queue`1" /> 内の、列挙子の現在位置にある要素。</returns>
2038      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
2039    </member>
2040    <member name="M:System.Collections.Generic.Queue`1.Enumerator.Dispose">
2041      <summary>
2042        <see cref="T:System.Collections.Generic.Queue`1.Enumerator" /> によって使用されているすべてのリソースを解放します。</summary>
2043    </member>
2044    <member name="M:System.Collections.Generic.Queue`1.Enumerator.MoveNext">
2045      <summary>列挙子を <see cref="T:System.Collections.Generic.Queue`1" /> の次の要素に進めます。</summary>
2046      <returns>列挙子が次の要素に正常に進んだ場合は true。列挙子がコレクションの末尾を越えた場合は false。</returns>
2047      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
2048    </member>
2049    <member name="P:System.Collections.Generic.Queue`1.Enumerator.System#Collections#IEnumerator#Current">
2050      <summary>列挙子の現在位置の要素を取得します。</summary>
2051      <returns>コレクション内の、列挙子の現在位置にある要素。</returns>
2052      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
2053    </member>
2054    <member name="M:System.Collections.Generic.Queue`1.Enumerator.System#Collections#IEnumerator#Reset">
2055      <summary>列挙子を初期位置、つまりコレクションの最初の要素の前に設定します。</summary>
2056      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
2057    </member>
2058    <member name="T:System.Collections.Generic.SortedDictionary`2">
2059      <summary>キーに基づいて並べ替えられた、キーと値のペアのコレクションを表します。</summary>
2060      <typeparam name="TKey">ディクショナリ内のキーの型。</typeparam>
2061      <typeparam name="TValue">ディクショナリ内の値の型。</typeparam>
2062      <filterpriority>1</filterpriority>
2063    </member>
2064    <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor">
2065      <summary>空で、キーの型の既定の <see cref="T:System.Collections.Generic.IComparer`1" /> 実装を使用する、<see cref="T:System.Collections.Generic.SortedDictionary`2" /> クラスの新しいインスタンスを初期化します。</summary>
2066    </member>
2067    <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IComparer{`0})">
2068      <summary>空で、指定した <see cref="T:System.Collections.Generic.IComparer`1" /> を使用してキーを比較する、<see cref="T:System.Collections.Generic.SortedDictionary`2" /> クラスの新しいインスタンスを初期化します。</summary>
2069      <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing keys, or null to use the default <see cref="T:System.Collections.Generic.Comparer`1" /> for the type of the key.</param>
2070    </member>
2071    <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})">
2072      <summary>指定した <see cref="T:System.Collections.Generic.IDictionary`2" /> から要素をコピーして格納し、キーの型の既定の <see cref="T:System.Collections.Generic.IComparer`1" /> 実装を使用する、<see cref="T:System.Collections.Generic.SortedDictionary`2" /> クラスの新しいインスタンスを初期化します。</summary>
2073      <param name="dictionary">新しい <see cref="T:System.Collections.Generic.SortedDictionary`2" /> に要素がコピーされた <see cref="T:System.Collections.Generic.IDictionary`2" />。</param>
2074      <exception cref="T:System.ArgumentNullException">
2075        <paramref name="dictionary" /> は null です。</exception>
2076      <exception cref="T:System.ArgumentException">
2077        <paramref name="dictionary" /> に、1 つ以上の重複するキーが格納されています。</exception>
2078    </member>
2079    <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IComparer{`0})">
2080      <summary>指定した <see cref="T:System.Collections.Generic.IDictionary`2" /> から要素をコピーして格納し、指定した <see cref="T:System.Collections.Generic.IComparer`1" /> 実装を使用してキーを比較する、<see cref="T:System.Collections.Generic.SortedDictionary`2" /> クラスの新しいインスタンスを初期化します。</summary>
2081      <param name="dictionary">新しい <see cref="T:System.Collections.Generic.SortedDictionary`2" /> に要素がコピーされた <see cref="T:System.Collections.Generic.IDictionary`2" />。</param>
2082      <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing keys, or null to use the default <see cref="T:System.Collections.Generic.Comparer`1" /> for the type of the key.</param>
2083      <exception cref="T:System.ArgumentNullException">
2084        <paramref name="dictionary" /> は null です。</exception>
2085      <exception cref="T:System.ArgumentException">
2086        <paramref name="dictionary" /> に、1 つ以上の重複するキーが格納されています。</exception>
2087    </member>
2088    <member name="M:System.Collections.Generic.SortedDictionary`2.Add(`0,`1)">
2089      <summary>指定したキーおよび値を持つ要素を <see cref="T:System.Collections.Generic.SortedDictionary`2" /> に追加します。</summary>
2090      <param name="key">追加する要素のキー。</param>
2091      <param name="value">追加する要素の値。参照型の場合は null の値を使用できます。</param>
2092      <exception cref="T:System.ArgumentNullException">
2093        <paramref name="key" /> は null です。</exception>
2094      <exception cref="T:System.ArgumentException">同じキーを持つ要素が、<see cref="T:System.Collections.Generic.SortedDictionary`2" /> に既に存在します。</exception>
2095    </member>
2096    <member name="M:System.Collections.Generic.SortedDictionary`2.Clear">
2097      <summary>
2098        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> からすべての要素を削除します。</summary>
2099    </member>
2100    <member name="P:System.Collections.Generic.SortedDictionary`2.Comparer">
2101      <summary>
2102        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> の要素の順序付けに使用する <see cref="T:System.Collections.Generic.IComparer`1" /> を取得します。</summary>
2103      <returns>
2104        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> の要素の順序付けに使用する <see cref="T:System.Collections.Generic.IComparer`1" />。</returns>
2105    </member>
2106    <member name="M:System.Collections.Generic.SortedDictionary`2.ContainsKey(`0)">
2107      <summary>指定したキーを持つ要素が <see cref="T:System.Collections.Generic.SortedDictionary`2" /> に含まれているかどうかを判断します。</summary>
2108      <returns>true if the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified key; otherwise, false.</returns>
2109      <param name="key">
2110        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 内で検索するキー。</param>
2111      <exception cref="T:System.ArgumentNullException">
2112        <paramref name="key" /> は null です。</exception>
2113    </member>
2114    <member name="M:System.Collections.Generic.SortedDictionary`2.ContainsValue(`1)">
2115      <summary>指定した値の要素が <see cref="T:System.Collections.Generic.SortedDictionary`2" /> に格納されているかどうかを確認します。</summary>
2116      <returns>true if the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified value; otherwise, false.</returns>
2117      <param name="value">
2118        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 内で検索される値。参照型の場合は null の値を使用できます。</param>
2119    </member>
2120    <member name="M:System.Collections.Generic.SortedDictionary`2.CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
2121      <summary>指定したインデックスを開始位置として、指定した <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 構造体の配列に <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 要素をコピーします。</summary>
2122      <param name="array">現在の <see cref="T:System.Collections.Generic.SortedDictionary`2" /> からコピーされる要素のコピー先である <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 構造体の 1 次元配列。この配列には、0 から始まるインデックスを使用する必要があります。</param>
2123      <param name="index">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
2124      <exception cref="T:System.ArgumentNullException">
2125        <paramref name="array" /> は null です。</exception>
2126      <exception cref="T:System.ArgumentOutOfRangeException">
2127        <paramref name="index" /> が 0 未満です。</exception>
2128      <exception cref="T:System.ArgumentException">コピー元の <see cref="T:System.Collections.Generic.SortedDictionary`2" /> の要素数が、<paramref name="index" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。</exception>
2129    </member>
2130    <member name="P:System.Collections.Generic.SortedDictionary`2.Count">
2131      <summary>
2132        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> に格納されているキー/値ペアの数を取得します。</summary>
2133      <returns>
2134        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> に格納されているキー/値ペアの数。</returns>
2135    </member>
2136    <member name="M:System.Collections.Generic.SortedDictionary`2.GetEnumerator">
2137      <summary>
2138        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> を反復処理する列挙子を返します。</summary>
2139      <returns>
2140        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> の <see cref="T:System.Collections.Generic.SortedDictionary`2.Enumerator" />。</returns>
2141    </member>
2142    <member name="P:System.Collections.Generic.SortedDictionary`2.Item(`0)">
2143      <summary>指定されたキーに関連付けられている値を取得または設定します。</summary>
2144      <returns>指定されたキーに関連付けられている値。指定したキーが見つからなかった場合、get 操作は <see cref="T:System.Collections.Generic.KeyNotFoundException" /> をスローし、set 操作は指定したキーを持つ新しい要素を作成します。</returns>
2145      <param name="key">取得または設定する値のキー。</param>
2146      <exception cref="T:System.ArgumentNullException">
2147        <paramref name="key" /> は null です。</exception>
2148      <exception cref="T:System.Collections.Generic.KeyNotFoundException">プロパティが取得されましたが、コレクション内に <paramref name="key" /> が存在しません。</exception>
2149    </member>
2150    <member name="P:System.Collections.Generic.SortedDictionary`2.Keys">
2151      <summary>
2152        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 内のキーを格納しているコレクションを取得します。</summary>
2153      <returns>
2154        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 内のキーを格納している <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />。</returns>
2155    </member>
2156    <member name="M:System.Collections.Generic.SortedDictionary`2.Remove(`0)">
2157      <summary>指定したキーを持つ要素を <see cref="T:System.Collections.Generic.SortedDictionary`2" /> から削除します。</summary>
2158      <returns>要素が正常に削除された場合は true。それ以外の場合は false。このメソッドは、<paramref name="key" /> が <see cref="T:System.Collections.Generic.SortedDictionary`2" /> に見つからない場合にも false を返します。</returns>
2159      <param name="key">削除する要素のキー。</param>
2160      <exception cref="T:System.ArgumentNullException">
2161        <paramref name="key" /> は null です。</exception>
2162    </member>
2163    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{T}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
2164      <summary>
2165        <see cref="T:System.Collections.Generic.ICollection`1" /> に項目を追加します。</summary>
2166      <param name="keyValuePair">
2167        <see cref="T:System.Collections.Generic.ICollection`1" /> に追加する <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 構造体。</param>
2168      <exception cref="T:System.ArgumentNullException">
2169        <paramref name="keyValuePair" /> は null です。</exception>
2170      <exception cref="T:System.ArgumentException">同じキーを持つ要素が、<see cref="T:System.Collections.Generic.SortedDictionary`2" /> に既に存在します。</exception>
2171    </member>
2172    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{T}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
2173      <summary>
2174        <see cref="T:System.Collections.Generic.ICollection`1" /> に特定のキーと値が格納されているかどうかを判断します。</summary>
2175      <returns>true if <paramref name="keyValuePair" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, false.</returns>
2176      <param name="keyValuePair">
2177        <see cref="T:System.Collections.Generic.ICollection`1" /> 内で検索される <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 構造体。</param>
2178    </member>
2179    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{T}#IsReadOnly">
2180      <summary>
2181        <see cref="T:System.Collections.Generic.ICollection`1" /> が読み取り専用であるかどうかを示す値を取得します。</summary>
2182      <returns>
2183        <see cref="T:System.Collections.Generic.ICollection`1" /> が読み取り専用の場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.SortedDictionary`2" /> の既定の実装では、このプロパティは常に false を返します。</returns>
2184    </member>
2185    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{T}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
2186      <summary>
2187        <see cref="T:System.Collections.Generic.ICollection`1" /> 内で最初に見つかった指定の要素を削除します。</summary>
2188      <returns>true if <paramref name="keyValuePair" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, false.This method also returns false if <paramref name="keyValuePair" /> was not found in the <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
2189      <param name="keyValuePair">
2190        <see cref="T:System.Collections.Generic.ICollection`1" /> から削除する <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 構造体。</param>
2191    </member>
2192    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
2193      <summary>
2194        <see cref="T:System.Collections.Generic.IDictionary`2" /> のキーを保持している <see cref="T:System.Collections.Generic.ICollection`1" /> を取得します。</summary>
2195      <returns>
2196        <see cref="T:System.Collections.Generic.IDictionary`2" /> のキーを保持している <see cref="T:System.Collections.Generic.ICollection`1" />。</returns>
2197    </member>
2198    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
2199      <summary>
2200        <see cref="T:System.Collections.Generic.IDictionary`2" /> 内の値を格納している <see cref="T:System.Collections.Generic.ICollection`1" /> を取得します。</summary>
2201      <returns>
2202        <see cref="T:System.Collections.Generic.IDictionary`2" /> 内の値を格納している <see cref="T:System.Collections.Generic.ICollection`1" />。</returns>
2203    </member>
2204    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
2205      <summary>コレクションを反復処理する列挙子を返します。</summary>
2206      <returns>コレクションの反復処理に使用できる <see cref="T:System.Collections.IEnumerator" />。</returns>
2207    </member>
2208    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Keys">
2209      <summary>Gets a collection containing the keys in the <see cref="T:System.Collections.Generic.SortedDictionary`2" /></summary>
2210      <returns>A collection containing the keys in the <see cref="T:System.Collections.Generic.SortedDictionary`2" /></returns>
2211    </member>
2212    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Values">
2213      <summary>Gets a collection containing the values in the <see cref="T:System.Collections.Generic.SortedDictionary`2" /></summary>
2214      <returns>A collection containing the values in the <see cref="T:System.Collections.Generic.SortedDictionary`2" /></returns>
2215    </member>
2216    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
2217      <summary>指定した配列インデックスを開始位置として、配列に <see cref="T:System.Collections.Generic.ICollection`1" /> の要素をコピーします。</summary>
2218      <param name="array">
2219        <see cref="T:System.Collections.Generic.ICollection`1" /> から要素がコピーされる 1 次元配列。配列には、0 から始まるインデックスが設定されている必要があります。</param>
2220      <param name="index">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
2221      <exception cref="T:System.ArgumentNullException">
2222        <paramref name="array" /> は null です。</exception>
2223      <exception cref="T:System.ArgumentOutOfRangeException">
2224        <paramref name="index" /> が 0 未満です。</exception>
2225      <exception cref="T:System.ArgumentException">
2226        <paramref name="array" /> が多次元です。または<paramref name="array" /> に 0 から始まるインデックス番号がありません。またはコピー元の <see cref="T:System.Collections.Generic.ICollection`1" /> の要素数が、<paramref name="index" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。またはコピー元の <see cref="T:System.Collections.Generic.ICollection`1" /> の型が、コピー先の <paramref name="array" /> の型に自動的にキャストできません。</exception>
2227    </member>
2228    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#ICollection#IsSynchronized">
2229      <summary>
2230        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。</summary>
2231      <returns>true if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, false.<see cref="T:System.Collections.Generic.SortedDictionary`2" /> の既定の実装では、このプロパティは常に false を返します。</returns>
2232    </member>
2233    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#ICollection#SyncRoot">
2234      <summary>
2235        <see cref="T:System.Collections.ICollection" /> へのアクセスの同期に使用できるオブジェクトを取得します。</summary>
2236      <returns>
2237        <see cref="T:System.Collections.ICollection" /> へのアクセスの同期に使用できるオブジェクト。</returns>
2238    </member>
2239    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
2240      <summary>指定したキーおよび値を持つ要素を <see cref="T:System.Collections.IDictionary" /> に追加します。</summary>
2241      <param name="key">追加する要素のキーとして使用するオブジェクト。</param>
2242      <param name="value">追加する要素の値として使用するオブジェクト。</param>
2243      <exception cref="T:System.ArgumentNullException">
2244        <paramref name="key" /> は null です。</exception>
2245      <exception cref="T:System.ArgumentException">
2246        <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.IDictionary" />.または<paramref name="value" /> が、<see cref="T:System.Collections.IDictionary" /> の値型 <paramref name="TValue" /> に代入できない型です。または同じキーを持つ要素が、<see cref="T:System.Collections.IDictionary" /> に既に存在します。</exception>
2247    </member>
2248    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Contains(System.Object)">
2249      <summary>指定したキーを持つ要素が <see cref="T:System.Collections.IDictionary" /> に含まれているかどうかを判断します。</summary>
2250      <returns>true if the <see cref="T:System.Collections.IDictionary" /> contains an element with the key; otherwise, false.</returns>
2251      <param name="key">
2252        <see cref="T:System.Collections.IDictionary" /> 内で検索するキー。</param>
2253      <exception cref="T:System.ArgumentNullException">
2254        <paramref name="key" /> は null です。</exception>
2255    </member>
2256    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#GetEnumerator">
2257      <summary>
2258        <see cref="T:System.Collections.IDictionary" /> の <see cref="T:System.Collections.IDictionaryEnumerator" /> を返します。</summary>
2259      <returns>
2260        <see cref="T:System.Collections.IDictionary" /> の <see cref="T:System.Collections.IDictionaryEnumerator" />。</returns>
2261    </member>
2262    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#IsFixedSize">
2263      <summary>
2264        <see cref="T:System.Collections.IDictionary" /> が固定サイズかどうかを示す値を取得します。</summary>
2265      <returns>true if the <see cref="T:System.Collections.IDictionary" /> has a fixed size; otherwise, false.<see cref="T:System.Collections.Generic.SortedDictionary`2" /> の既定の実装では、このプロパティは常に false を返します。</returns>
2266    </member>
2267    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#IsReadOnly">
2268      <summary>
2269        <see cref="T:System.Collections.IDictionary" /> が読み取り専用であるかどうかを示す値を取得します。</summary>
2270      <returns>
2271        <see cref="T:System.Collections.IDictionary" /> が読み取り専用の場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.SortedDictionary`2" /> の既定の実装では、このプロパティは常に false を返します。</returns>
2272    </member>
2273    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Item(System.Object)">
2274      <summary>指定したキーを持つ要素を取得または設定します。</summary>
2275      <returns>
2276        <paramref name="key" /> がディクショナリにない場合、または <paramref name="key" /> が <see cref="T:System.Collections.Generic.SortedDictionary`2" /> のキー型 <paramref name="TKey" /> に代入できる型ではない場合は、指定したキーに関連付けられた要素または null。</returns>
2277      <param name="key">取得する要素のキー。</param>
2278      <exception cref="T:System.ArgumentNullException">
2279        <paramref name="key" /> は null です。</exception>
2280      <exception cref="T:System.ArgumentException">A value is being assigned, and <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.またはA value is being assigned, and <paramref name="value" /> is of a type that is not assignable to the value type <paramref name="TValue" /> of the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</exception>
2281    </member>
2282    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Keys">
2283      <summary>
2284        <see cref="T:System.Collections.IDictionary" /> のキーを保持している <see cref="T:System.Collections.ICollection" /> を取得します。</summary>
2285      <returns>
2286        <see cref="T:System.Collections.IDictionary" /> のキーを保持している <see cref="T:System.Collections.ICollection" />。</returns>
2287    </member>
2288    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Remove(System.Object)">
2289      <summary>指定したキーを持つ要素を <see cref="T:System.Collections.IDictionary" /> から削除します。</summary>
2290      <param name="key">削除する要素のキー。</param>
2291      <exception cref="T:System.ArgumentNullException">
2292        <paramref name="key" /> は null です。</exception>
2293    </member>
2294    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Values">
2295      <summary>
2296        <see cref="T:System.Collections.IDictionary" /> 内の値を格納している <see cref="T:System.Collections.ICollection" /> を取得します。</summary>
2297      <returns>
2298        <see cref="T:System.Collections.IDictionary" /> 内の値を格納している <see cref="T:System.Collections.ICollection" />。</returns>
2299    </member>
2300    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IEnumerable#GetEnumerator">
2301      <summary>コレクションを反復処理する列挙子を返します。</summary>
2302      <returns>コレクションの反復処理に使用できる <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
2303    </member>
2304    <member name="M:System.Collections.Generic.SortedDictionary`2.TryGetValue(`0,`1@)">
2305      <summary>指定したキーに関連付けられている値を取得します。</summary>
2306      <returns>true if the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified key; otherwise, false.</returns>
2307      <param name="key">取得する値のキー。</param>
2308      <param name="value">このメソッドは、キーが見つかった場合は指定したキーに関連付けられている値を返し、それ以外の場合は <paramref name="value" /> パラメーターの型に対する既定の値を返します。 </param>
2309      <exception cref="T:System.ArgumentNullException">
2310        <paramref name="key" /> は null です。</exception>
2311    </member>
2312    <member name="P:System.Collections.Generic.SortedDictionary`2.Values">
2313      <summary>
2314        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 内の値を格納しているコレクションを取得します。</summary>
2315      <returns>
2316        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 内の値を格納している <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />。</returns>
2317    </member>
2318    <member name="T:System.Collections.Generic.SortedDictionary`2.Enumerator">
2319      <summary>
2320        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> の要素を列挙します。</summary>
2321    </member>
2322    <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.Current">
2323      <summary>列挙子の現在位置の要素を取得します。</summary>
2324      <returns>
2325        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 内の、列挙子の現在位置にある要素。</returns>
2326    </member>
2327    <member name="M:System.Collections.Generic.SortedDictionary`2.Enumerator.Dispose">
2328      <summary>
2329        <see cref="T:System.Collections.Generic.SortedDictionary`2.Enumerator" /> によって使用されているすべてのリソースを解放します。</summary>
2330    </member>
2331    <member name="M:System.Collections.Generic.SortedDictionary`2.Enumerator.MoveNext">
2332      <summary>列挙子を <see cref="T:System.Collections.Generic.SortedDictionary`2" /> の次の要素に進めます。</summary>
2333      <returns>列挙子が次の要素に正常に進んだ場合は true。列挙子がコレクションの末尾を越えた場合は false。</returns>
2334      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
2335    </member>
2336    <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Entry">
2337      <summary>列挙子の現在位置の要素を <see cref="T:System.Collections.DictionaryEntry" /> 構造体として取得します。</summary>
2338      <returns>
2339        <see cref="T:System.Collections.DictionaryEntry" /> 構造体としての、ディクショナリの現在の位置にあるコレクション内の要素。</returns>
2340      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
2341    </member>
2342    <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Key">
2343      <summary>列挙子の現在位置の要素のキーを取得します。</summary>
2344      <returns>コレクション内の列挙子の現在位置にある要素のキー。</returns>
2345      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
2346    </member>
2347    <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Value">
2348      <summary>列挙子の現在位置の要素の値を取得します。</summary>
2349      <returns>コレクション内の列挙子の現在位置にある要素の値。</returns>
2350      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
2351    </member>
2352    <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IEnumerator#Current">
2353      <summary>列挙子の現在位置の要素を取得します。</summary>
2354      <returns>コレクション内の、列挙子の現在位置にある要素。</returns>
2355      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
2356    </member>
2357    <member name="M:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IEnumerator#Reset">
2358      <summary>列挙子を初期位置、つまりコレクションの最初の要素の前に設定します。</summary>
2359      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
2360    </member>
2361    <member name="T:System.Collections.Generic.SortedDictionary`2.KeyCollection">
2362      <summary>
2363        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 内のキーのコレクションを表します。このクラスは継承できません。</summary>
2364    </member>
2365    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.#ctor(System.Collections.Generic.SortedDictionary{`0,`1})">
2366      <summary>指定した <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 内のキーを反映する、<see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> クラスの新しいインスタンスを初期化します。</summary>
2367      <param name="dictionary">新しい <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> にキーが反映される <see cref="T:System.Collections.Generic.SortedDictionary`2" />。</param>
2368      <exception cref="T:System.ArgumentNullException">
2369        <paramref name="dictionary" /> は null なので、</exception>
2370    </member>
2371    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.CopyTo(`0[],System.Int32)">
2372      <summary>
2373        <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> の要素を既存の 1 次元の配列にコピーします。コピー操作は、配列内の指定したインデックスから始まります。</summary>
2374      <param name="array">
2375        <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> から要素がコピーされる 1 次元配列。配列では 0 から始まるインデックスを使用する必要があります。</param>
2376      <param name="index">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
2377      <exception cref="T:System.ArgumentNullException">
2378        <paramref name="array" /> は null なので、</exception>
2379      <exception cref="T:System.ArgumentOutOfRangeException">
2380        <paramref name="index" /> が 0 未満です。</exception>
2381      <exception cref="T:System.ArgumentException">コピー元の <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> の要素数が、<paramref name="index" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。</exception>
2382    </member>
2383    <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.Count">
2384      <summary>
2385        <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> に格納されている要素の数を取得します。</summary>
2386      <returns>
2387        <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> に格納されている要素の数。</returns>
2388    </member>
2389    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.GetEnumerator">
2390      <summary>
2391        <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> を反復処理する列挙子を返します。</summary>
2392      <returns>
2393        <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> の <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator" /> 構造体。</returns>
2394    </member>
2395    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Add(`0)">
2396      <summary>
2397        <see cref="T:System.Collections.Generic.ICollection`1" /> に項目を追加します。この実装は、常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
2398      <param name="item">
2399        <see cref="T:System.Collections.Generic.ICollection`1" /> に追加するオブジェクト。</param>
2400      <exception cref="T:System.NotSupportedException">常にスローされます。コレクションが読み取り専用です。</exception>
2401    </member>
2402    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Clear">
2403      <summary>
2404        <see cref="T:System.Collections.Generic.ICollection`1" /> からすべての項目を削除します。この実装は、常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
2405      <exception cref="T:System.NotSupportedException">常にスローされます。コレクションが読み取り専用です。</exception>
2406    </member>
2407    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Contains(`0)">
2408      <summary>指定した値が <see cref="T:System.Collections.Generic.ICollection`1" /> に格納されているかどうかを判断します。</summary>
2409      <returns>
2410        <paramref name="item" /> が <see cref="T:System.Collections.Generic.ICollection`1" /> に存在する場合は true。それ以外の場合は false。</returns>
2411      <param name="item">
2412        <see cref="T:System.Collections.Generic.ICollection`1" /> 内で検索するオブジェクト。</param>
2413    </member>
2414    <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#IsReadOnly">
2415      <summary>
2416        <see cref="T:System.Collections.Generic.ICollection`1" /> が読み取り専用かどうかを示す値を取得します。</summary>
2417      <returns>
2418        <see cref="T:System.Collections.Generic.ICollection`1" /> が読み取り専用である場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> の既定の実装では、このプロパティは常に false を返します。</returns>
2419    </member>
2420    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Remove(`0)">
2421      <summary>
2422        <see cref="T:System.Collections.Generic.ICollection`1" /> 内で最初に見つかった特定のオブジェクトを削除します。この実装は、常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
2423      <returns>
2424        <paramref name="item" /> が <see cref="T:System.Collections.Generic.ICollection`1" /> から正常に削除される場合は true。それ以外の場合は false。このメソッドは、<paramref name="item" /> が <see cref="T:System.Collections.Generic.ICollection`1" /> に見つからない場合にも false を返します。</returns>
2425      <param name="item">
2426        <see cref="T:System.Collections.Generic.ICollection`1" /> から削除するオブジェクト。</param>
2427      <exception cref="T:System.NotSupportedException">常にスローされます。コレクションが読み取り専用です。</exception>
2428    </member>
2429    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
2430      <summary>コレクションを反復処理する列挙子を返します。</summary>
2431      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
2432    </member>
2433    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
2434      <summary>特定の配列インデックスを開始位置として、配列に <see cref="T:System.Collections.ICollection" /> の要素をコピーします。</summary>
2435      <param name="array">
2436        <see cref="T:System.Collections.ICollection" /> から要素がコピーされる 1 次元配列。配列では 0 から始まるインデックスを使用する必要があります。</param>
2437      <param name="index">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
2438      <exception cref="T:System.ArgumentNullException">
2439        <paramref name="array" /> は null なので、</exception>
2440      <exception cref="T:System.ArgumentOutOfRangeException">
2441        <paramref name="index" /> が 0 未満です。</exception>
2442      <exception cref="T:System.ArgumentException">
2443        <paramref name="array" /> が多次元です。または<paramref name="array" /> に 0 から始まるインデックス番号がありません。またはコピー元の <see cref="T:System.Collections.ICollection" /> の要素数が、<paramref name="index" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。またはコピー元の <see cref="T:System.Collections.ICollection" /> の型が、コピー先の <paramref name="array" /> の型に自動的にキャストできません。</exception>
2444    </member>
2445    <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#ICollection#IsSynchronized">
2446      <summary>
2447        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。</summary>
2448      <returns>
2449        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) 場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> の既定の実装では、このプロパティは常に false を返します。</returns>
2450    </member>
2451    <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#ICollection#SyncRoot">
2452      <summary>
2453        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクトを取得します。</summary>
2454      <returns>
2455        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクト。<see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> の既定の実装では、このプロパティは常に現在のインスタンスを返します。</returns>
2456    </member>
2457    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#IEnumerable#GetEnumerator">
2458      <summary>コレクションを反復処理する列挙子を返します。</summary>
2459      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.IEnumerator" />。</returns>
2460    </member>
2461    <member name="T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator">
2462      <summary>
2463        <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> の要素を列挙します。</summary>
2464    </member>
2465    <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.Current">
2466      <summary>列挙子の現在位置の要素を取得します。</summary>
2467      <returns>
2468        <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 内の、列挙子の現在位置にある要素。</returns>
2469    </member>
2470    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.Dispose">
2471      <summary>
2472        <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator" /> によって使用されているすべてのリソースを解放します。</summary>
2473    </member>
2474    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.MoveNext">
2475      <summary>列挙子を <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> の次の要素に進めます。</summary>
2476      <returns>列挙子が次の要素に正常に進んだ場合は true。列挙子がコレクションの末尾を越えた場合は false。</returns>
2477      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
2478    </member>
2479    <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Current">
2480      <summary>列挙子の現在位置の要素を取得します。</summary>
2481      <returns>コレクション内の、列挙子の現在位置にある要素。</returns>
2482      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
2483    </member>
2484    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Reset">
2485      <summary>列挙子を初期位置、つまりコレクションの最初の要素の前に設定します。</summary>
2486      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
2487    </member>
2488    <member name="T:System.Collections.Generic.SortedDictionary`2.ValueCollection">
2489      <summary>
2490        <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 内の値のコレクションを表します。このクラスは継承できません。</summary>
2491    </member>
2492    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.#ctor(System.Collections.Generic.SortedDictionary{`0,`1})">
2493      <summary>指定した <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 内の値を反映する、<see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> クラスの新しいインスタンスを初期化します。</summary>
2494      <param name="dictionary">新しい <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> に値が反映される <see cref="T:System.Collections.Generic.SortedDictionary`2" />。</param>
2495      <exception cref="T:System.ArgumentNullException">
2496        <paramref name="dictionary" /> は null なので、</exception>
2497    </member>
2498    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.CopyTo(`1[],System.Int32)">
2499      <summary>
2500        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> の要素を既存の 1 次元の配列にコピーします。コピー操作は、配列内の指定したインデックスから始まります。</summary>
2501      <param name="array">
2502        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> から要素がコピーされる 1 次元配列。配列では 0 から始まるインデックスを使用する必要があります。</param>
2503      <param name="index">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
2504      <exception cref="T:System.ArgumentNullException">
2505        <paramref name="array" /> は null なので、</exception>
2506      <exception cref="T:System.ArgumentOutOfRangeException">
2507        <paramref name="index" /> が 0 未満です。</exception>
2508      <exception cref="T:System.ArgumentException">コピー元の <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> の要素数が、<paramref name="index" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。</exception>
2509    </member>
2510    <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.Count">
2511      <summary>
2512        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> に格納されている要素の数を取得します。</summary>
2513      <returns>
2514        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> に格納されている要素の数。</returns>
2515    </member>
2516    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.GetEnumerator">
2517      <summary>
2518        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> を反復処理する列挙子を返します。</summary>
2519      <returns>
2520        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> の <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator" /> 構造体。</returns>
2521    </member>
2522    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Add(`1)">
2523      <summary>
2524        <see cref="T:System.Collections.Generic.ICollection`1" /> に項目を追加します。この実装は、常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
2525      <param name="item">
2526        <see cref="T:System.Collections.Generic.ICollection`1" /> に追加するオブジェクト。</param>
2527      <exception cref="T:System.NotSupportedException">常にスローされます。コレクションが読み取り専用です。</exception>
2528    </member>
2529    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Clear">
2530      <summary>
2531        <see cref="T:System.Collections.Generic.ICollection`1" /> からすべての項目を削除します。この実装は、常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
2532      <exception cref="T:System.NotSupportedException">常にスローされます。コレクションが読み取り専用です。</exception>
2533    </member>
2534    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Contains(`1)">
2535      <summary>
2536        <see cref="T:System.Collections.Generic.ICollection`1" /> に指定した値が格納されているかどうかを判断します。</summary>
2537      <returns>
2538        <paramref name="item" /> が <see cref="T:System.Collections.Generic.ICollection`1" /> に存在する場合は true。それ以外の場合は false。</returns>
2539      <param name="item">
2540        <see cref="T:System.Collections.Generic.ICollection`1" /> 内で検索するオブジェクト。</param>
2541    </member>
2542    <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#IsReadOnly">
2543      <summary>
2544        <see cref="T:System.Collections.Generic.ICollection`1" /> が読み取り専用かどうかを示す値を取得します。</summary>
2545      <returns>
2546        <see cref="T:System.Collections.Generic.ICollection`1" /> が読み取り専用である場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> の既定の実装では、このプロパティは常に false を返します。</returns>
2547    </member>
2548    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Remove(`1)">
2549      <summary>
2550        <see cref="T:System.Collections.Generic.ICollection`1" /> 内で最初に見つかった特定のオブジェクトを削除します。この実装は、常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
2551      <returns>
2552        <paramref name="item" /> が <see cref="T:System.Collections.Generic.ICollection`1" /> から正常に削除される場合は true。それ以外の場合は false。このメソッドは、<paramref name="item" /> が <see cref="T:System.Collections.Generic.ICollection`1" /> に見つからない場合にも false を返します。</returns>
2553      <param name="item">
2554        <see cref="T:System.Collections.Generic.ICollection`1" /> から削除するオブジェクト。</param>
2555      <exception cref="T:System.NotSupportedException">常にスローされます。コレクションが読み取り専用です。</exception>
2556    </member>
2557    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
2558      <summary>
2559        <see cref="T:System.Collections.Generic.ICollection`1" /> 内で最初に見つかった特定のオブジェクトを削除します。この実装は、常に <see cref="T:System.NotSupportedException" /> をスローします。</summary>
2560      <returns>
2561        <paramref name="item" /> が <see cref="T:System.Collections.Generic.ICollection`1" /> から正常に削除される場合は true。それ以外の場合は false。このメソッドは、<paramref name="item" /> が <see cref="T:System.Collections.Generic.ICollection`1" /> に見つからない場合にも false を返します。</returns>
2562      <exception cref="T:System.NotSupportedException">常にスローされます。コレクションが読み取り専用です。</exception>
2563    </member>
2564    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
2565      <summary>特定の配列インデックスを開始位置として、配列に <see cref="T:System.Collections.ICollection" /> の要素をコピーします。</summary>
2566      <param name="array">
2567        <see cref="T:System.Collections.ICollection" /> から要素がコピーされる 1 次元配列。配列では 0 から始まるインデックスを使用する必要があります。</param>
2568      <param name="index">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
2569      <exception cref="T:System.ArgumentNullException">
2570        <paramref name="array" /> は null なので、</exception>
2571      <exception cref="T:System.ArgumentOutOfRangeException">
2572        <paramref name="index" /> が 0 未満です。</exception>
2573      <exception cref="T:System.ArgumentException">
2574        <paramref name="array" /> が多次元です。または<paramref name="array" /> に 0 から始まるインデックス番号がありません。またはコピー元の <see cref="T:System.Collections.ICollection" /> の要素数が、<paramref name="index" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。またはコピー元の <see cref="T:System.Collections.ICollection" /> の型が、コピー先の <paramref name="array" /> の型に自動的にキャストできません。</exception>
2575    </member>
2576    <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#ICollection#IsSynchronized">
2577      <summary>
2578        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。</summary>
2579      <returns>
2580        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) 場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> の既定の実装では、このプロパティは常に false を返します。</returns>
2581    </member>
2582    <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#ICollection#SyncRoot">
2583      <summary>
2584        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクトを取得します。</summary>
2585      <returns>
2586        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクト。<see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> の既定の実装では、このプロパティは常に現在のインスタンスを返します。</returns>
2587    </member>
2588    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#IEnumerable#GetEnumerator">
2589      <summary>コレクションを反復処理する列挙子を返します。</summary>
2590      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.IEnumerator" />。</returns>
2591    </member>
2592    <member name="T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator">
2593      <summary>
2594        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> の要素を列挙します。</summary>
2595    </member>
2596    <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.Current">
2597      <summary>列挙子の現在位置の要素を取得します。</summary>
2598      <returns>
2599        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 内の、列挙子の現在位置にある要素。</returns>
2600    </member>
2601    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.Dispose">
2602      <summary>
2603        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator" /> によって使用されているすべてのリソースを解放します。</summary>
2604    </member>
2605    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.MoveNext">
2606      <summary>列挙子を <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> の次の要素に進めます。</summary>
2607      <returns>列挙子が次の要素に正常に進んだ場合は true。列挙子がコレクションの末尾を越えた場合は false。</returns>
2608      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
2609    </member>
2610    <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Current">
2611      <summary>列挙子の現在位置の要素を取得します。</summary>
2612      <returns>コレクション内の、列挙子の現在位置にある要素。</returns>
2613      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
2614    </member>
2615    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Reset">
2616      <summary>列挙子を初期位置、つまりコレクションの最初の要素の前に設定します。</summary>
2617      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
2618    </member>
2619    <member name="T:System.Collections.Generic.SortedList`2">
2620      <summary>関連付けられた <see cref="T:System.Collections.Generic.IComparer`1" /> 実装に基づいて、キーにより並べ替えられた、キーと値のペアのコレクションを表します。</summary>
2621      <typeparam name="TKey">コレクション内のキーの型。</typeparam>
2622      <typeparam name="TValue">コレクション内の値の型。</typeparam>
2623    </member>
2624    <member name="M:System.Collections.Generic.SortedList`2.#ctor">
2625      <summary>空で、既定の初期量を備え、既定の <see cref="T:System.Collections.Generic.IComparer`1" /> を使用する、<see cref="T:System.Collections.Generic.SortedList`2" /> クラスの新しいインスタンスを初期化します。</summary>
2626    </member>
2627    <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IComparer{`0})">
2628      <summary>空で、既定の初期量を備え、指定した <see cref="T:System.Collections.Generic.IComparer`1" /> を使用する、<see cref="T:System.Collections.Generic.SortedList`2" /> クラスの新しいインスタンスを初期化します。</summary>
2629      <param name="comparer">キーの比較時に使用する <see cref="T:System.Collections.Generic.IComparer`1" /> の実装。またはキーの型に既定の <see cref="T:System.Collections.Generic.Comparer`1" /> を使用する場合は null。</param>
2630    </member>
2631    <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})">
2632      <summary>指定した <see cref="T:System.Collections.Generic.IDictionary`2" /> からコピーした要素を格納し、コピーした要素の数を格納できるだけの容量を備え、既定の <see cref="T:System.Collections.Generic.IComparer`1" /> を使用する、<see cref="T:System.Collections.Generic.SortedList`2" /> クラスの新しいインスタンスを初期化します。</summary>
2633      <param name="dictionary">新しい <see cref="T:System.Collections.Generic.SortedList`2" /> に要素がコピーされた <see cref="T:System.Collections.Generic.IDictionary`2" />。</param>
2634      <exception cref="T:System.ArgumentNullException">
2635        <paramref name="dictionary" /> は null です。</exception>
2636      <exception cref="T:System.ArgumentException">
2637        <paramref name="dictionary" /> に、1 つ以上の重複するキーが格納されています。</exception>
2638    </member>
2639    <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IComparer{`0})">
2640      <summary>指定した <see cref="T:System.Collections.Generic.IDictionary`2" /> からコピーした要素を格納し、コピーした要素の数を格納できるだけの容量を備え、指定した <see cref="T:System.Collections.Generic.IComparer`1" /> を使用する、<see cref="T:System.Collections.Generic.SortedList`2" /> クラスの新しいインスタンスを初期化します。</summary>
2641      <param name="dictionary">新しい <see cref="T:System.Collections.Generic.SortedList`2" /> に要素がコピーされた <see cref="T:System.Collections.Generic.IDictionary`2" />。</param>
2642      <param name="comparer">キーの比較時に使用する <see cref="T:System.Collections.Generic.IComparer`1" /> の実装。またはキーの型に既定の <see cref="T:System.Collections.Generic.Comparer`1" /> を使用する場合は null。</param>
2643      <exception cref="T:System.ArgumentNullException">
2644        <paramref name="dictionary" /> は null です。</exception>
2645      <exception cref="T:System.ArgumentException">
2646        <paramref name="dictionary" /> に、1 つ以上の重複するキーが格納されています。</exception>
2647    </member>
2648    <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Int32)">
2649      <summary>空で、指定した初期量を備え、既定の <see cref="T:System.Collections.Generic.IComparer`1" /> を使用する、<see cref="T:System.Collections.Generic.SortedList`2" /> クラスの新しいインスタンスを初期化します。</summary>
2650      <param name="capacity">
2651        <see cref="T:System.Collections.Generic.SortedList`2" /> が格納できる要素数の初期値。</param>
2652      <exception cref="T:System.ArgumentOutOfRangeException">
2653        <paramref name="capacity" /> が 0 未満です。</exception>
2654    </member>
2655    <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Int32,System.Collections.Generic.IComparer{`0})">
2656      <summary>空で、指定した初期量を備え、指定した <see cref="T:System.Collections.Generic.IComparer`1" /> を使用する、<see cref="T:System.Collections.Generic.SortedList`2" /> クラスの新しいインスタンスを初期化します。</summary>
2657      <param name="capacity">
2658        <see cref="T:System.Collections.Generic.SortedList`2" /> が格納できる要素数の初期値。</param>
2659      <param name="comparer">キーの比較時に使用する <see cref="T:System.Collections.Generic.IComparer`1" /> の実装。またはキーの型に既定の <see cref="T:System.Collections.Generic.Comparer`1" /> を使用する場合は null。</param>
2660      <exception cref="T:System.ArgumentOutOfRangeException">
2661        <paramref name="capacity" /> が 0 未満です。</exception>
2662    </member>
2663    <member name="M:System.Collections.Generic.SortedList`2.Add(`0,`1)">
2664      <summary>指定したキーおよび値を持つ要素を <see cref="T:System.Collections.Generic.SortedList`2" /> に追加します。</summary>
2665      <param name="key">追加する要素のキー。</param>
2666      <param name="value">追加する要素の値。参照型の場合は null の値を使用できます。</param>
2667      <exception cref="T:System.ArgumentNullException">
2668        <paramref name="key" /> は null です。</exception>
2669      <exception cref="T:System.ArgumentException">同じキーを持つ要素が、<see cref="T:System.Collections.Generic.SortedList`2" /> に既に存在します。</exception>
2670    </member>
2671    <member name="P:System.Collections.Generic.SortedList`2.Capacity">
2672      <summary>
2673        <see cref="T:System.Collections.Generic.SortedList`2" /> に格納できる要素の数を取得または設定します。</summary>
2674      <returns>
2675        <see cref="T:System.Collections.Generic.SortedList`2" /> に格納できる要素の数。</returns>
2676      <exception cref="T:System.ArgumentOutOfRangeException">
2677        <see cref="P:System.Collections.Generic.SortedList`2.Capacity" /> が <see cref="P:System.Collections.Generic.SortedList`2.Count" /> より小さい値に設定されています。</exception>
2678      <exception cref="T:System.OutOfMemoryException">システムのメモリが不足しています。</exception>
2679    </member>
2680    <member name="M:System.Collections.Generic.SortedList`2.Clear">
2681      <summary>
2682        <see cref="T:System.Collections.Generic.SortedList`2" /> からすべての要素を削除します。</summary>
2683    </member>
2684    <member name="P:System.Collections.Generic.SortedList`2.Comparer">
2685      <summary>並べ替えられたリストの <see cref="T:System.Collections.Generic.IComparer`1" /> を取得します。</summary>
2686      <returns>現在の <see cref="T:System.Collections.Generic.SortedList`2" /> の <see cref="T:System.IComparable`1" />。</returns>
2687    </member>
2688    <member name="M:System.Collections.Generic.SortedList`2.ContainsKey(`0)">
2689      <summary>特定のキーが <see cref="T:System.Collections.Generic.SortedList`2" /> に含まれるかどうかを調べます。</summary>
2690      <returns>true if the <see cref="T:System.Collections.Generic.SortedList`2" /> contains an element with the specified key; otherwise, false.</returns>
2691      <param name="key">
2692        <see cref="T:System.Collections.Generic.SortedList`2" /> 内で検索するキー。</param>
2693      <exception cref="T:System.ArgumentNullException">
2694        <paramref name="key" /> は null です。</exception>
2695    </member>
2696    <member name="M:System.Collections.Generic.SortedList`2.ContainsValue(`1)">
2697      <summary>
2698        <see cref="T:System.Collections.Generic.SortedList`2" /> に指定の値が含まれているかどうかを確認します。</summary>
2699      <returns>true if the <see cref="T:System.Collections.Generic.SortedList`2" /> contains an element with the specified value; otherwise, false.</returns>
2700      <param name="value">
2701        <see cref="T:System.Collections.Generic.SortedList`2" /> 内で検索される値。参照型の場合は null の値を使用できます。</param>
2702    </member>
2703    <member name="P:System.Collections.Generic.SortedList`2.Count">
2704      <summary>
2705        <see cref="T:System.Collections.Generic.SortedList`2" /> に格納されているキー/値ペアの数を取得します。</summary>
2706      <returns>
2707        <see cref="T:System.Collections.Generic.SortedList`2" /> に格納されているキー/値ペアの数。</returns>
2708    </member>
2709    <member name="M:System.Collections.Generic.SortedList`2.GetEnumerator">
2710      <summary>
2711        <see cref="T:System.Collections.Generic.SortedList`2" /> を反復処理する列挙子を返します。</summary>
2712      <returns>
2713        <see cref="T:System.Collections.Generic.SortedList`2" /> の <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 型の <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
2714    </member>
2715    <member name="M:System.Collections.Generic.SortedList`2.IndexOfKey(`0)">
2716      <summary>指定したキーを検索し、<see cref="T:System.Collections.Generic.SortedList`2" /> 全体内でそのキーが見つかった位置の 0 から始まるインデックスを返します。</summary>
2717      <returns>
2718        <see cref="T:System.Collections.Generic.SortedList`2" /> 全体内で <paramref name="key" /> が見つかった場合は、見つかった位置の 0 から始まるインデックス番号。それ以外の場合は -1。</returns>
2719      <param name="key">
2720        <see cref="T:System.Collections.Generic.SortedList`2" /> 内で検索するキー。</param>
2721      <exception cref="T:System.ArgumentNullException">
2722        <paramref name="key" /> は null です。</exception>
2723    </member>
2724    <member name="M:System.Collections.Generic.SortedList`2.IndexOfValue(`1)">
2725      <summary>指定した値を検索し、<see cref="T:System.Collections.Generic.SortedList`2" /> 全体内で最初に見つかった位置の 0 から始まるインデックスを返します。</summary>
2726      <returns>
2727        <see cref="T:System.Collections.Generic.SortedList`2" /> 全体を対象に <paramref name="value" /> を検索し、見つかった場合は、インデックス番号の最も小さい要素の 0 から始まるインデックス番号、それ以外の場合は -1。</returns>
2728      <param name="value">
2729        <see cref="T:System.Collections.Generic.SortedList`2" /> 内で検索される値。参照型の場合は null の値を使用できます。</param>
2730    </member>
2731    <member name="P:System.Collections.Generic.SortedList`2.Item(`0)">
2732      <summary>指定されたキーに関連付けられている値を取得または設定します。</summary>
2733      <returns>指定されたキーに関連付けられている値。指定したキーが見つからなかった場合、get 操作は <see cref="T:System.Collections.Generic.KeyNotFoundException" /> をスローし、set 操作は指定したキーを使用して新しい要素を作成します。</returns>
2734      <param name="key">値を取得または設定する対象のキー。</param>
2735      <exception cref="T:System.ArgumentNullException">
2736        <paramref name="key" /> は null です。</exception>
2737      <exception cref="T:System.Collections.Generic.KeyNotFoundException">プロパティが取得されましたが、コレクション内に <paramref name="key" /> が存在しません。</exception>
2738    </member>
2739    <member name="P:System.Collections.Generic.SortedList`2.Keys">
2740      <summary>並べ替えられた順序で、<see cref="T:System.Collections.Generic.SortedList`2" /> 内のキーを含むコレクションを取得します。</summary>
2741      <returns>
2742        <see cref="T:System.Collections.Generic.SortedList`2" /> 内のキーを格納している <see cref="T:System.Collections.Generic.IList`1" />。</returns>
2743    </member>
2744    <member name="M:System.Collections.Generic.SortedList`2.Remove(`0)">
2745      <summary>指定したキーを持つ要素を <see cref="T:System.Collections.Generic.SortedList`2" /> から削除します。</summary>
2746      <returns>要素が正常に削除された場合は true。それ以外の場合は false。This method also returns false if <paramref name="key" /> was not found in the original <see cref="T:System.Collections.Generic.SortedList`2" />.</returns>
2747      <param name="key">削除する要素のキー。</param>
2748      <exception cref="T:System.ArgumentNullException">
2749        <paramref name="key" /> は null です。</exception>
2750    </member>
2751    <member name="M:System.Collections.Generic.SortedList`2.RemoveAt(System.Int32)">
2752      <summary>
2753        <see cref="T:System.Collections.Generic.SortedList`2" /> の指定したインデックスにある要素を削除します。</summary>
2754      <param name="index">削除する要素の 0 から始まるインデックス。</param>
2755      <exception cref="T:System.ArgumentOutOfRangeException">
2756        <paramref name="index" /> が 0 未満です。または<paramref name="index" /> が <see cref="P:System.Collections.Generic.SortedList`2.Count" /> 以上になっています。</exception>
2757    </member>
2758    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{T}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
2759      <summary>
2760        <see cref="T:System.Collections.Generic.ICollection`1" /> に、キー/値ペアを追加します。</summary>
2761      <param name="keyValuePair">
2762        <see cref="T:System.Collections.Generic.ICollection`1" /> に追加する <see cref="T:System.Collections.Generic.KeyValuePair`2" /> です。</param>
2763    </member>
2764    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{T}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
2765      <summary>
2766        <see cref="T:System.Collections.Generic.ICollection`1" /> に特定の要素が格納されているかどうかを判断します。</summary>
2767      <returns>true if <paramref name="keyValuePair" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, false.</returns>
2768      <param name="keyValuePair">
2769        <see cref="T:System.Collections.Generic.ICollection`1" /> 内で検索される <see cref="T:System.Collections.Generic.KeyValuePair`2" />。</param>
2770    </member>
2771    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{T}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
2772      <summary>
2773        <see cref="T:System.Collections.Generic.ICollection`1" /> の要素を <see cref="T:System.Array" /> にコピーします。コピーは特定の <see cref="T:System.Array" /> のインデックスから開始されます。</summary>
2774      <param name="array">
2775        <see cref="T:System.Collections.Generic.ICollection`1" /> から要素がコピーされる 1 次元の <see cref="T:System.Array" />。<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
2776      <param name="arrayIndex">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
2777      <exception cref="T:System.ArgumentNullException">
2778        <paramref name="array" /> は null です。 </exception>
2779      <exception cref="T:System.ArgumentOutOfRangeException">
2780        <paramref name="arrayIndex" /> が 0 未満です。</exception>
2781      <exception cref="T:System.ArgumentException">コピー元の <see cref="T:System.Collections.Generic.ICollection`1" /> の要素数が、<paramref name="arrayIndex" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。</exception>
2782    </member>
2783    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{T}#IsReadOnly">
2784      <summary>
2785        <see cref="T:System.Collections.Generic.ICollection`1" /> が読み取り専用であるかどうかを示す値を取得します。</summary>
2786      <returns>
2787        <see cref="T:System.Collections.Generic.ICollection`1" /> が読み取り専用の場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.SortedList`2" /> の既定の実装では、このプロパティは常に false を返します。</returns>
2788    </member>
2789    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{T}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
2790      <summary>
2791        <see cref="T:System.Collections.Generic.ICollection`1" /> 内で最初に見つかった特定のキー/値ペアを削除します。</summary>
2792      <returns>true if <paramref name="keyValuePair" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, false.This method also returns false if <paramref name="keyValuePair" /> was not found in the original <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
2793      <param name="keyValuePair">
2794        <see cref="T:System.Collections.Generic.ICollection`1" /> から削除する <see cref="T:System.Collections.Generic.KeyValuePair`2" />。</param>
2795    </member>
2796    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
2797      <summary>
2798        <see cref="T:System.Collections.Generic.IDictionary`2" /> のキーを保持している <see cref="T:System.Collections.Generic.ICollection`1" /> を取得します。</summary>
2799      <returns>
2800        <see cref="T:System.Collections.Generic.IDictionary`2" /> のキーを保持している <see cref="T:System.Collections.Generic.ICollection`1" />。</returns>
2801    </member>
2802    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
2803      <summary>
2804        <see cref="T:System.Collections.Generic.IDictionary`2" /> 内の値を格納している <see cref="T:System.Collections.Generic.ICollection`1" /> を取得します。</summary>
2805      <returns>
2806        <see cref="T:System.Collections.Generic.IDictionary`2" /> 内の値を格納している <see cref="T:System.Collections.Generic.ICollection`1" />。</returns>
2807    </member>
2808    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
2809      <summary>コレクションを反復処理する列挙子を返します。</summary>
2810      <returns>コレクションの反復処理に使用できる <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
2811    </member>
2812    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Keys">
2813      <summary>読み取り専用のディクショナリのキーを含む列挙可能なコレクションを取得します。</summary>
2814      <returns>読み取り専用のディクショナリのキーを含む列挙可能なコレクション。</returns>
2815    </member>
2816    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Values">
2817      <summary>読み取り専用のディクショナリの値を含む列挙可能なコレクションを取得します。</summary>
2818      <returns>読み取り専用のディクショナリの値を含む列挙可能なコレクション。</returns>
2819    </member>
2820    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
2821      <summary>
2822        <see cref="T:System.Collections.ICollection" /> の要素を <see cref="T:System.Array" /> にコピーします。コピーは特定の <see cref="T:System.Array" /> のインデックスから開始されます。</summary>
2823      <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />.<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
2824      <param name="arrayIndex">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
2825      <exception cref="T:System.ArgumentNullException">
2826        <paramref name="array" /> は null です。</exception>
2827      <exception cref="T:System.ArgumentOutOfRangeException">
2828        <paramref name="arrayIndex" /> が 0 未満です。</exception>
2829      <exception cref="T:System.ArgumentException">
2830        <paramref name="array" /> が多次元です。または<paramref name="array" /> に 0 から始まるインデックス番号がありません。またはコピー元の <see cref="T:System.Collections.ICollection" /> の要素数が、<paramref name="arrayIndex" /> からコピー先の <paramref name="array" /> の末尾までに格納できる数を超えています。またはコピー元の <see cref="T:System.Collections.ICollection" /> の型が、コピー先の <paramref name="array" /> の型に自動的にキャストできません。</exception>
2831    </member>
2832    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#ICollection#IsSynchronized">
2833      <summary>
2834        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。</summary>
2835      <returns>true if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, false.<see cref="T:System.Collections.Generic.SortedList`2" /> の既定の実装では、このプロパティは常に false を返します。</returns>
2836    </member>
2837    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#ICollection#SyncRoot">
2838      <summary>
2839        <see cref="T:System.Collections.ICollection" /> へのアクセスの同期に使用できるオブジェクトを取得します。</summary>
2840      <returns>
2841        <see cref="T:System.Collections.ICollection" /> へのアクセスの同期に使用できるオブジェクト。<see cref="T:System.Collections.Generic.SortedList`2" /> の既定の実装では、このプロパティは常に現在のインスタンスを返します。</returns>
2842    </member>
2843    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
2844      <summary>指定したキーおよび値を持つ要素を <see cref="T:System.Collections.IDictionary" /> に追加します。</summary>
2845      <param name="key">追加する要素のキーとして使用する <see cref="T:System.Object" />。</param>
2846      <param name="value">追加する要素の値として使用する <see cref="T:System.Object" />。</param>
2847      <exception cref="T:System.ArgumentNullException">
2848        <paramref name="key" /> は null です。</exception>
2849      <exception cref="T:System.ArgumentException">
2850        <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.IDictionary" />.または<paramref name="value" /> が、<see cref="T:System.Collections.IDictionary" /> の値型 <paramref name="TValue" /> に代入できない型です。または同じキーを持つ要素が、<see cref="T:System.Collections.IDictionary" /> に既に存在します。</exception>
2851    </member>
2852    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Contains(System.Object)">
2853      <summary>指定したキーを持つ要素が <see cref="T:System.Collections.IDictionary" /> に含まれているかどうかを判断します。</summary>
2854      <returns>true if the <see cref="T:System.Collections.IDictionary" /> contains an element with the key; otherwise, false.</returns>
2855      <param name="key">
2856        <see cref="T:System.Collections.IDictionary" /> 内で検索するキー。</param>
2857      <exception cref="T:System.ArgumentNullException">
2858        <paramref name="key" /> は null です。</exception>
2859    </member>
2860    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#GetEnumerator">
2861      <summary>
2862        <see cref="T:System.Collections.IDictionary" /> の <see cref="T:System.Collections.IDictionaryEnumerator" /> を返します。</summary>
2863      <returns>
2864        <see cref="T:System.Collections.IDictionary" /> の <see cref="T:System.Collections.IDictionaryEnumerator" />。</returns>
2865    </member>
2866    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#IsFixedSize">
2867      <summary>
2868        <see cref="T:System.Collections.IDictionary" /> が固定サイズかどうかを示す値を取得します。</summary>
2869      <returns>true if the <see cref="T:System.Collections.IDictionary" /> has a fixed size; otherwise, false.<see cref="T:System.Collections.Generic.SortedList`2" /> の既定の実装では、このプロパティは常に false を返します。</returns>
2870    </member>
2871    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#IsReadOnly">
2872      <summary>
2873        <see cref="T:System.Collections.IDictionary" /> が読み取り専用であるかどうかを示す値を取得します。</summary>
2874      <returns>
2875        <see cref="T:System.Collections.IDictionary" /> が読み取り専用の場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.SortedList`2" /> の既定の実装では、このプロパティは常に false を返します。</returns>
2876    </member>
2877    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Item(System.Object)">
2878      <summary>指定したキーを持つ要素を取得または設定します。</summary>
2879      <returns>The element with the specified key, or null if <paramref name="key" /> is not in the dictionary or <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.Generic.SortedList`2" />.</returns>
2880      <param name="key">取得または設定する要素のキー。</param>
2881      <exception cref="T:System.ArgumentNullException">
2882        <paramref name="key" /> は null です。</exception>
2883      <exception cref="T:System.ArgumentException">A value is being assigned, and <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.Generic.SortedList`2" />.またはA value is being assigned, and <paramref name="value" /> is of a type that is not assignable to the value type <paramref name="TValue" /> of the <see cref="T:System.Collections.Generic.SortedList`2" />.</exception>
2884    </member>
2885    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Keys">
2886      <summary>
2887        <see cref="T:System.Collections.IDictionary" /> のキーを保持している <see cref="T:System.Collections.ICollection" /> を取得します。</summary>
2888      <returns>
2889        <see cref="T:System.Collections.IDictionary" /> のキーを保持している <see cref="T:System.Collections.ICollection" />。</returns>
2890    </member>
2891    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Remove(System.Object)">
2892      <summary>指定したキーを持つ要素を <see cref="T:System.Collections.IDictionary" /> から削除します。</summary>
2893      <param name="key">削除する要素のキー。</param>
2894      <exception cref="T:System.ArgumentNullException">
2895        <paramref name="key" /> は null です。</exception>
2896    </member>
2897    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Values">
2898      <summary>
2899        <see cref="T:System.Collections.IDictionary" /> 内の値を格納している <see cref="T:System.Collections.ICollection" /> を取得します。</summary>
2900      <returns>
2901        <see cref="T:System.Collections.IDictionary" /> 内の値を格納している <see cref="T:System.Collections.ICollection" />。</returns>
2902    </member>
2903    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IEnumerable#GetEnumerator">
2904      <summary>コレクションを反復処理する列挙子を返します。</summary>
2905      <returns>コレクションの反復処理に使用できる <see cref="T:System.Collections.IEnumerator" />。</returns>
2906    </member>
2907    <member name="M:System.Collections.Generic.SortedList`2.TrimExcess">
2908      <summary>
2909        <see cref="T:System.Collections.Generic.SortedList`2" /> 内にある実際の要素数が現在の容量の 90% 未満の場合は、容量をその数に設定します。</summary>
2910    </member>
2911    <member name="M:System.Collections.Generic.SortedList`2.TryGetValue(`0,`1@)">
2912      <summary>指定したキーに関連付けられている値を取得します。</summary>
2913      <returns>true if the <see cref="T:System.Collections.Generic.SortedList`2" /> contains an element with the specified key; otherwise, false.</returns>
2914      <param name="key">値を取得する対象のキー。</param>
2915      <param name="value">このメソッドは、キーが見つかった場合は指定したキーに関連付けられている値を返し、それ以外の場合は <paramref name="value" /> パラメーターの型に対する既定の値を返します。このパラメーターは初期化せずに渡されます。</param>
2916      <exception cref="T:System.ArgumentNullException">
2917        <paramref name="key" /> は null です。</exception>
2918    </member>
2919    <member name="P:System.Collections.Generic.SortedList`2.Values">
2920      <summary>
2921        <see cref="T:System.Collections.Generic.SortedList`2" /> 内の値を格納しているコレクションを取得します。</summary>
2922      <returns>
2923        <see cref="T:System.Collections.Generic.SortedList`2" /> 内の値を格納している <see cref="T:System.Collections.Generic.IList`1" />。</returns>
2924    </member>
2925    <member name="T:System.Collections.Generic.SortedSet`1">
2926      <summary>一定の並べ替え順序で管理されたオブジェクトのコレクションを表します。</summary>
2927      <typeparam name="T">セット内の要素の型。</typeparam>
2928    </member>
2929    <member name="M:System.Collections.Generic.SortedSet`1.#ctor">
2930      <summary>
2931        <see cref="T:System.Collections.Generic.SortedSet`1" /> クラスの新しいインスタンスを初期化します。</summary>
2932    </member>
2933    <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IComparer{`0})">
2934      <summary>指定された比較子を使用する <see cref="T:System.Collections.Generic.SortedSet`1" /> クラスの新しいインスタンスを初期化します。</summary>
2935      <param name="comparer">オブジェクトの比較に使用する既定の比較子。 </param>
2936      <exception cref="T:System.ArgumentNullException">
2937        <paramref name="comparer" /> は null です。</exception>
2938    </member>
2939    <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
2940      <summary>指定の列挙可能なコレクションからコピーされた要素を格納する、<see cref="T:System.Collections.Generic.SortedSet`1" /> クラスの新しいインスタンスを初期化します。</summary>
2941      <param name="collection">コピーする列挙可能なコレクション。</param>
2942    </member>
2943    <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IComparer{`0})">
2944      <summary>指定の列挙可能なコレクションからコピーされた要素を格納し、指定された比較子を使用する、<see cref="T:System.Collections.Generic.SortedSet`1" /> クラスの新しいインスタンスを初期化します。</summary>
2945      <param name="collection">コピーする列挙可能なコレクション。</param>
2946      <param name="comparer">オブジェクトの比較に使用する既定の比較子。 </param>
2947      <exception cref="T:System.ArgumentNullException">
2948        <paramref name="collection" /> は null です。</exception>
2949    </member>
2950    <member name="M:System.Collections.Generic.SortedSet`1.Add(`0)">
2951      <summary>要素をセットに追加し、正常に追加されたかどうかを示す値を返します。</summary>
2952      <returns>
2953        <paramref name="item" /> がセットに追加された場合は true。それ以外の場合は false。</returns>
2954      <param name="item">セットに追加する要素。</param>
2955    </member>
2956    <member name="M:System.Collections.Generic.SortedSet`1.Clear">
2957      <summary>セットからすべての要素を削除します。</summary>
2958    </member>
2959    <member name="P:System.Collections.Generic.SortedSet`1.Comparer">
2960      <summary>
2961        <see cref="T:System.Collections.Generic.SortedSet`1" /> 内の値の等価性を調べるための <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> オブジェクトを取得します。</summary>
2962      <returns>
2963        <see cref="T:System.Collections.Generic.SortedSet`1" /> 内の値の等価性を調べるための比較子。</returns>
2964    </member>
2965    <member name="M:System.Collections.Generic.SortedSet`1.Contains(`0)">
2966      <summary>セットに特定の要素が含まれているかどうかを判断します。</summary>
2967      <returns>セットに <paramref name="item" /> が含まれている場合は true。それ以外の場合は false。</returns>
2968      <param name="item">セット内で検索する要素。</param>
2969    </member>
2970    <member name="M:System.Collections.Generic.SortedSet`1.CopyTo(`0[])">
2971      <summary>
2972        <see cref="T:System.Collections.Generic.SortedSet`1" /> 全体を互換性のある 1 次元の配列にコピーします。コピー操作は、コピー先の配列の先頭から始まります。</summary>
2973      <param name="array">
2974        <see cref="T:System.Collections.Generic.SortedSet`1" /> から要素がコピーされる 1 次元配列。</param>
2975      <exception cref="T:System.ArgumentException">コピー元の <see cref="T:System.Collections.Generic.SortedSet`1" /> の要素数が、コピー先の配列に格納できる要素の数を超えています。 </exception>
2976      <exception cref="T:System.ArgumentNullException">
2977        <paramref name="array" /> は null です。</exception>
2978    </member>
2979    <member name="M:System.Collections.Generic.SortedSet`1.CopyTo(`0[],System.Int32)">
2980      <summary>
2981        <see cref="T:System.Collections.Generic.SortedSet`1" /> 全体を互換性のある 1 次元配列にコピーします。コピー操作は、配列の指定したインデックスから始まります。</summary>
2982      <param name="array">
2983        <see cref="T:System.Collections.Generic.SortedSet`1" /> から要素がコピーされる 1 次元配列。配列には、0 から始まるインデックスが設定されている必要があります。</param>
2984      <param name="index">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
2985      <exception cref="T:System.ArgumentException">コピー元の配列の要素数が、<paramref name="index" /> からコピー先の配列の末尾までに格納できる数を超えています。</exception>
2986      <exception cref="T:System.ArgumentNullException">
2987        <paramref name="array" /> は null です。</exception>
2988      <exception cref="T:System.ArgumentOutOfRangeException">
2989        <paramref name="index" /> が 0 未満です。</exception>
2990    </member>
2991    <member name="M:System.Collections.Generic.SortedSet`1.CopyTo(`0[],System.Int32,System.Int32)">
2992      <summary>指定された数の要素を <see cref="T:System.Collections.Generic.SortedSet`1" /> から互換性のある 1 次元配列にコピーします。コピー操作は、指定された配列インデックスから始まります。</summary>
2993      <param name="array">
2994        <see cref="T:System.Collections.Generic.SortedSet`1" /> から要素がコピーされる 1 次元配列。配列には、0 から始まるインデックスが設定されている必要があります。</param>
2995      <param name="index">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
2996      <param name="count">コピーする要素の数。</param>
2997      <exception cref="T:System.ArgumentException">コピー元の配列の要素数が、<paramref name="index" /> からコピー先の配列の末尾までに格納できる数を超えています。</exception>
2998      <exception cref="T:System.ArgumentNullException">
2999        <paramref name="array" /> は null です。</exception>
3000      <exception cref="T:System.ArgumentOutOfRangeException">
3001        <paramref name="index" /> が 0 未満です。または<paramref name="count" /> が 0 未満です。</exception>
3002    </member>
3003    <member name="P:System.Collections.Generic.SortedSet`1.Count">
3004      <summary>
3005        <see cref="T:System.Collections.Generic.SortedSet`1" /> にある要素の数を取得します。</summary>
3006      <returns>
3007        <see cref="T:System.Collections.Generic.SortedSet`1" /> にある要素の数。</returns>
3008    </member>
3009    <member name="M:System.Collections.Generic.SortedSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0})">
3010      <summary>現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトから、指定されたコレクションに含まれる要素をすべて削除します。</summary>
3011      <param name="other">
3012        <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトから削除する項目のコレクション。</param>
3013      <exception cref="T:System.ArgumentNullException">
3014        <paramref name="other" /> は null です。</exception>
3015    </member>
3016    <member name="M:System.Collections.Generic.SortedSet`1.GetEnumerator">
3017      <summary>
3018        <see cref="T:System.Collections.Generic.SortedSet`1" /> を反復処理する列挙子を返します。</summary>
3019      <returns>
3020        <see cref="T:System.Collections.Generic.SortedSet`1" /> をソートされた順序で反復処理する列挙子。</returns>
3021    </member>
3022    <member name="M:System.Collections.Generic.SortedSet`1.GetViewBetween(`0,`0)">
3023      <summary>
3024        <see cref="T:System.Collections.Generic.SortedSet`1" /> 内のサブセットのビューを返します。</summary>
3025      <returns>指定された範囲の値だけを含むサブセット ビュー。</returns>
3026      <param name="lowerValue">目的のビューの範囲の最小値。</param>
3027      <param name="upperValue">目的のビューの範囲の最大値。</param>
3028      <exception cref="T:System.ArgumentException">比較子に照らすと、<paramref name="lowerValue" /> が <paramref name="upperValue" /> を超えています。</exception>
3029      <exception cref="T:System.ArgumentOutOfRangeException">ビューで試行された操作が、<paramref name="lowerValue" /> および <paramref name="upperValue" /> で指定された範囲外です。</exception>
3030    </member>
3031    <member name="M:System.Collections.Generic.SortedSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0})">
3032      <summary>指定されたコレクションに存在する要素だけが含まれるように現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトを変更します。</summary>
3033      <param name="other">現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトと比較するコレクション。</param>
3034      <exception cref="T:System.ArgumentNullException">
3035        <paramref name="other" /> は null です。</exception>
3036    </member>
3037    <member name="M:System.Collections.Generic.SortedSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
3038      <summary>
3039        <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトが、指定されたコレクションの真のサブセット (真部分集合) であるかどうかを判断します。</summary>
3040      <returns>
3041        <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトが <paramref name="other" /> の真のサブセットである場合は true。それ以外の場合は false。</returns>
3042      <param name="other">現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトと比較するコレクション。</param>
3043      <exception cref="T:System.ArgumentNullException">
3044        <paramref name="other" /> は null です。</exception>
3045    </member>
3046    <member name="M:System.Collections.Generic.SortedSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
3047      <summary>
3048        <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトが、指定されたコレクションの真のスーパーセット (真上位集合) であるかどうかを判断します。</summary>
3049      <returns>
3050        <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトが <paramref name="other" /> の真のスーパーセットである場合は true。それ以外の場合は false。</returns>
3051      <param name="other">現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトと比較するコレクション。 </param>
3052      <exception cref="T:System.ArgumentNullException">
3053        <paramref name="other" /> は null です。</exception>
3054    </member>
3055    <member name="M:System.Collections.Generic.SortedSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
3056      <summary>
3057        <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトが、指定されたコレクションのサブセットであるかどうかを判断します。</summary>
3058      <returns>現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトが <paramref name="other" /> のサブセットの場合は true。それ以外の場合は false。</returns>
3059      <param name="other">現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトと比較するコレクション。</param>
3060      <exception cref="T:System.ArgumentNullException">
3061        <paramref name="other" /> は null です。</exception>
3062    </member>
3063    <member name="M:System.Collections.Generic.SortedSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
3064      <summary>
3065        <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトが、指定されたコレクションのスーパーセットであるかどうかを判断します。</summary>
3066      <returns>
3067        <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトが <paramref name="other" /> のスーパーセットである場合は true。それ以外の場合は false。</returns>
3068      <param name="other">現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトと比較するコレクション。 </param>
3069      <exception cref="T:System.ArgumentNullException">
3070        <paramref name="other" /> は null です。</exception>
3071    </member>
3072    <member name="P:System.Collections.Generic.SortedSet`1.Max">
3073      <summary>比較子によって定義された、<see cref="T:System.Collections.Generic.SortedSet`1" /> 内の最大値を取得します。</summary>
3074      <returns>セット内の最大値。</returns>
3075    </member>
3076    <member name="P:System.Collections.Generic.SortedSet`1.Min">
3077      <summary>比較子によって定義された、<see cref="T:System.Collections.Generic.SortedSet`1" /> 内の最小値を取得します。</summary>
3078      <returns>セット内の最小値。</returns>
3079    </member>
3080    <member name="M:System.Collections.Generic.SortedSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
3081      <summary>現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトと指定されたコレクションとが共通の要素を共有しているかどうかを判断します。</summary>
3082      <returns>
3083        <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトと <paramref name="other" /> との間に共通する要素が 1 つでも存在する場合は true。それ以外の場合は false。</returns>
3084      <param name="other">現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトと比較するコレクション。</param>
3085      <exception cref="T:System.ArgumentNullException">
3086        <paramref name="other" /> は null です。</exception>
3087    </member>
3088    <member name="M:System.Collections.Generic.SortedSet`1.Remove(`0)">
3089      <summary>指定した項目を <see cref="T:System.Collections.Generic.SortedSet`1" /> から削除します。</summary>
3090      <returns>true if the element is found and successfully removed; otherwise, false.</returns>
3091      <param name="item">削除する要素。</param>
3092    </member>
3093    <member name="M:System.Collections.Generic.SortedSet`1.RemoveWhere(System.Predicate{`0})">
3094      <summary>指定の述語によって定義された条件に一致するすべての要素を <see cref="T:System.Collections.Generic.SortedSet`1" /> から削除します。</summary>
3095      <returns>
3096        <see cref="T:System.Collections.Generic.SortedSet`1" /> コレクションから削除された要素数。 </returns>
3097      <param name="match">削除する要素の条件を定義するデリゲート。</param>
3098      <exception cref="T:System.ArgumentNullException">
3099        <paramref name="match" /> は null です。</exception>
3100    </member>
3101    <member name="M:System.Collections.Generic.SortedSet`1.Reverse">
3102      <summary>
3103        <see cref="T:System.Collections.Generic.SortedSet`1" /> を逆順で反復処理する <see cref="T:System.Collections.Generic.IEnumerable`1" /> を返します。</summary>
3104      <returns>
3105        <see cref="T:System.Collections.Generic.SortedSet`1" /> を逆順で反復処理する列挙子。</returns>
3106    </member>
3107    <member name="M:System.Collections.Generic.SortedSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
3108      <summary>現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトと指定されたコレクションに同じ要素が存在するかどうかを判断します。</summary>
3109      <returns>現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトが <paramref name="other" /> と等しい場合は true。それ以外の場合は false。</returns>
3110      <param name="other">現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトと比較するコレクション。</param>
3111      <exception cref="T:System.ArgumentNullException">
3112        <paramref name="other" /> は null です。</exception>
3113    </member>
3114    <member name="M:System.Collections.Generic.SortedSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
3115      <summary>現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトを、そのオブジェクトと指定されたコレクションの (両方に存在するのではなく) どちらか一方に存在する要素だけが格納されるように変更します。</summary>
3116      <param name="other">現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトと比較するコレクション。</param>
3117      <exception cref="T:System.ArgumentNullException">
3118        <paramref name="other" /> は null です。</exception>
3119    </member>
3120    <member name="M:System.Collections.Generic.SortedSet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
3121      <summary>
3122        <see cref="T:System.Collections.Generic.ICollection`1" /> オブジェクトに項目を追加します。</summary>
3123      <param name="item">
3124        <see cref="T:System.Collections.Generic.ICollection`1" /> オブジェクトに追加するオブジェクト。</param>
3125      <exception cref="T:System.NotSupportedException">
3126        <see cref="T:System.Collections.Generic.ICollection`1" /> は読み取り専用です。</exception>
3127    </member>
3128    <member name="P:System.Collections.Generic.SortedSet`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
3129      <summary>
3130        <see cref="T:System.Collections.ICollection" /> が読み取り専用かどうかを示す値を取得します。</summary>
3131      <returns>コレクションが読み取り専用の場合は true。それ以外の場合は false。</returns>
3132    </member>
3133    <member name="M:System.Collections.Generic.SortedSet`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
3134      <summary>コレクションを反復処理する列挙子を返します。</summary>
3135      <returns>コレクションの反復処理に使用できる列挙子。</returns>
3136    </member>
3137    <member name="M:System.Collections.Generic.SortedSet`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
3138      <summary>
3139        <see cref="T:System.Collections.Generic.SortedSet`1" /> 全体を互換性のある 1 次元配列にコピーします。コピー操作は、配列の指定したインデックスから始まります。</summary>
3140      <param name="array">
3141        <see cref="T:System.Collections.Generic.SortedSet`1" /> から要素がコピーされる 1 次元配列。配列には、0 から始まるインデックスが設定されている必要があります。</param>
3142      <param name="index">コピーの開始位置となる、<paramref name="array" /> 内の 0 から始まるインデックス。</param>
3143      <exception cref="T:System.ArgumentException">コピー元の配列の要素数が、<paramref name="index" /> からコピー先の配列の末尾までに格納できる数を超えています。 </exception>
3144      <exception cref="T:System.ArgumentNullException">
3145        <paramref name="array" /> は null です。</exception>
3146      <exception cref="T:System.ArgumentOutOfRangeException">
3147        <paramref name="index" /> が 0 未満です。</exception>
3148    </member>
3149    <member name="P:System.Collections.Generic.SortedSet`1.System#Collections#ICollection#IsSynchronized">
3150      <summary>
3151        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。</summary>
3152      <returns>
3153        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている場合は true。それ以外の場合は false。</returns>
3154    </member>
3155    <member name="P:System.Collections.Generic.SortedSet`1.System#Collections#ICollection#SyncRoot">
3156      <summary>
3157        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクトを取得します。</summary>
3158      <returns>
3159        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクト。<see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> の既定の実装では、このプロパティは常に現在のインスタンスを返します。</returns>
3160    </member>
3161    <member name="M:System.Collections.Generic.SortedSet`1.System#Collections#IEnumerable#GetEnumerator">
3162      <summary>コレクションを反復処理する列挙子を返します。</summary>
3163      <returns>コレクションの反復処理に使用できる列挙子。</returns>
3164    </member>
3165    <member name="M:System.Collections.Generic.SortedSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0})">
3166      <summary>現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトを、現在のオブジェクトまたは指定したコレクションのいずれかに存在するすべての要素が格納されるように変更します。</summary>
3167      <param name="other">現在の <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトと比較するコレクション。</param>
3168      <exception cref="T:System.ArgumentNullException">
3169        <paramref name="other" /> は null です。</exception>
3170    </member>
3171    <member name="T:System.Collections.Generic.SortedSet`1.Enumerator">
3172      <summary>
3173        <see cref="T:System.Collections.Generic.SortedSet`1" /> オブジェクトの要素を列挙します。</summary>
3174    </member>
3175    <member name="P:System.Collections.Generic.SortedSet`1.Enumerator.Current">
3176      <summary>列挙子の現在位置の要素を取得します。</summary>
3177      <returns>コレクション内の、列挙子の現在位置にある要素。</returns>
3178    </member>
3179    <member name="M:System.Collections.Generic.SortedSet`1.Enumerator.Dispose">
3180      <summary>
3181        <see cref="T:System.Collections.Generic.SortedSet`1.Enumerator" /> によって使用されているすべてのリソースを解放します。</summary>
3182    </member>
3183    <member name="M:System.Collections.Generic.SortedSet`1.Enumerator.MoveNext">
3184      <summary>列挙子を <see cref="T:System.Collections.Generic.SortedSet`1" /> コレクションの次の要素に進めます。</summary>
3185      <returns>列挙子が次の要素に正常に進んだ場合は true。列挙子がコレクションの末尾を越えた場合は false。</returns>
3186      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
3187    </member>
3188    <member name="P:System.Collections.Generic.SortedSet`1.Enumerator.System#Collections#IEnumerator#Current">
3189      <summary>列挙子の現在位置の要素を取得します。</summary>
3190      <returns>コレクション内の、列挙子の現在位置にある要素。</returns>
3191      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
3192    </member>
3193    <member name="M:System.Collections.Generic.SortedSet`1.Enumerator.System#Collections#IEnumerator#Reset">
3194      <summary>列挙子を初期位置、つまりコレクションの最初の要素の前に設定します。</summary>
3195      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
3196    </member>
3197    <member name="T:System.Collections.Generic.Stack`1">
3198      <summary>指定した同じ型のインスタンスの、後入れ先出し (LIFO) の可変サイズのコレクションを表します。</summary>
3199      <typeparam name="T">スタック内の要素の型を指定します。</typeparam>
3200      <filterpriority>1</filterpriority>
3201    </member>
3202    <member name="M:System.Collections.Generic.Stack`1.#ctor">
3203      <summary>空で、既定の初期量を備えた、<see cref="T:System.Collections.Generic.Stack`1" /> クラスの新しいインスタンスを初期化します。</summary>
3204    </member>
3205    <member name="M:System.Collections.Generic.Stack`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
3206      <summary>指定したコレクションからコピーした要素を格納し、コピーされる要素の数を格納できるだけの容量を備えた、<see cref="T:System.Collections.Generic.Stack`1" /> クラスの新しいインスタンスを初期化します。</summary>
3207      <param name="collection">要素のコピー元のコレクション。</param>
3208      <exception cref="T:System.ArgumentNullException">
3209        <paramref name="collection" /> is null.</exception>
3210    </member>
3211    <member name="M:System.Collections.Generic.Stack`1.#ctor(System.Int32)">
3212      <summary>空で、指定した初期量または既定の初期量のうち大きい方の初期量を備えた、<see cref="T:System.Collections.Generic.Stack`1" /> クラスの新しいインスタンスを初期化します。</summary>
3213      <param name="capacity">
3214        <see cref="T:System.Collections.Generic.Stack`1" /> が格納できる要素数の初期値。</param>
3215      <exception cref="T:System.ArgumentOutOfRangeException">
3216        <paramref name="capacity" /> is less than zero.</exception>
3217    </member>
3218    <member name="M:System.Collections.Generic.Stack`1.Clear">
3219      <summary>
3220        <see cref="T:System.Collections.Generic.Stack`1" /> からすべてのオブジェクトを削除します。</summary>
3221      <filterpriority>1</filterpriority>
3222    </member>
3223    <member name="M:System.Collections.Generic.Stack`1.Contains(`0)">
3224      <summary>ある要素が <see cref="T:System.Collections.Generic.Stack`1" /> 内に存在するかどうかを判断します。</summary>
3225      <returns>
3226        <paramref name="item" /> が <see cref="T:System.Collections.Generic.Stack`1" /> に存在する場合は true。それ以外の場合は false。</returns>
3227      <param name="item">
3228        <see cref="T:System.Collections.Generic.Stack`1" /> 内で検索するオブジェクト。参照型の場合は null の値を使用できます。</param>
3229    </member>
3230    <member name="M:System.Collections.Generic.Stack`1.CopyTo(`0[],System.Int32)">
3231      <summary>
3232        <see cref="T:System.Collections.Generic.Stack`1" /> を既存の 1 次元の <see cref="T:System.Array" /> にコピーします。コピー操作は、配列内の指定したインデックスから始まります。</summary>
3233      <param name="array">
3234        <see cref="T:System.Collections.Generic.Stack`1" /> からコピーされる要素のコピー先となる 1 次元の <see cref="T:System.Array" />。<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
3235      <param name="arrayIndex">コピーの開始位置とする <paramref name="array" /> のインデックス (0 から始まる)。</param>
3236      <exception cref="T:System.ArgumentNullException">
3237        <paramref name="array" /> is null.</exception>
3238      <exception cref="T:System.ArgumentOutOfRangeException">
3239        <paramref name="arrayIndex" /> is less than zero.</exception>
3240      <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.Stack`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
3241    </member>
3242    <member name="P:System.Collections.Generic.Stack`1.Count">
3243      <summary>
3244        <see cref="T:System.Collections.Generic.Stack`1" /> に格納されている要素の数を取得します。</summary>
3245      <returns>
3246        <see cref="T:System.Collections.Generic.Stack`1" /> に格納されている要素の数。</returns>
3247    </member>
3248    <member name="M:System.Collections.Generic.Stack`1.GetEnumerator">
3249      <summary>
3250        <see cref="T:System.Collections.Generic.Stack`1" /> の列挙子を返します。</summary>
3251      <returns>
3252        <see cref="T:System.Collections.Generic.Stack`1" /> の <see cref="T:System.Collections.Generic.Stack`1.Enumerator" />。</returns>
3253    </member>
3254    <member name="M:System.Collections.Generic.Stack`1.Peek">
3255      <summary>
3256        <see cref="T:System.Collections.Generic.Stack`1" /> の先頭にあるオブジェクトを削除せずに返します。</summary>
3257      <returns>
3258        <see cref="T:System.Collections.Generic.Stack`1" /> の一番上にあるオブジェクト。</returns>
3259      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Stack`1" /> is empty.</exception>
3260    </member>
3261    <member name="M:System.Collections.Generic.Stack`1.Pop">
3262      <summary>
3263        <see cref="T:System.Collections.Generic.Stack`1" /> の先頭にあるオブジェクトを削除し、返します。</summary>
3264      <returns>
3265        <see cref="T:System.Collections.Generic.Stack`1" /> の一番上から削除されたオブジェクト。</returns>
3266      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Stack`1" /> is empty.</exception>
3267    </member>
3268    <member name="M:System.Collections.Generic.Stack`1.Push(`0)">
3269      <summary>
3270        <see cref="T:System.Collections.Generic.Stack`1" /> の先頭にオブジェクトを挿入します。</summary>
3271      <param name="item">
3272        <see cref="T:System.Collections.Generic.Stack`1" /> にプッシュするオブジェクト。参照型の場合は null の値を使用できます。</param>
3273    </member>
3274    <member name="M:System.Collections.Generic.Stack`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
3275      <summary>コレクションを反復処理する列挙子を返します。</summary>
3276      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
3277    </member>
3278    <member name="M:System.Collections.Generic.Stack`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
3279      <summary>
3280        <see cref="T:System.Collections.ICollection" /> の要素を <see cref="T:System.Array" /> にコピーします。<see cref="T:System.Array" /> の特定のインデックスからコピーが開始されます。</summary>
3281      <param name="array">
3282        <see cref="T:System.Collections.ICollection" /> からコピーされる要素のコピー先となる 1 次元の <see cref="T:System.Array" />。<see cref="T:System.Array" /> には、0 から始まるインデックス番号が必要です。</param>
3283      <param name="arrayIndex">コピーの開始位置とする <paramref name="array" /> のインデックス (0 から始まる)。</param>
3284      <exception cref="T:System.ArgumentNullException">
3285        <paramref name="array" /> is null.</exception>
3286      <exception cref="T:System.ArgumentOutOfRangeException">
3287        <paramref name="arrayIndex" /> is less than zero.</exception>
3288      <exception cref="T:System.ArgumentException">
3289        <paramref name="array" /> is multidimensional.-or-<paramref name="array" /> does not have zero-based indexing.-or-The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.-or-The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
3290    </member>
3291    <member name="P:System.Collections.Generic.Stack`1.System#Collections#ICollection#IsSynchronized">
3292      <summary>
3293        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。</summary>
3294      <returns>
3295        <see cref="T:System.Collections.ICollection" /> へのアクセスが同期されている (スレッド セーフである) 場合は true。それ以外の場合は false。<see cref="T:System.Collections.Generic.Stack`1" /> の既定の実装では、このプロパティは常に false を返します。</returns>
3296    </member>
3297    <member name="P:System.Collections.Generic.Stack`1.System#Collections#ICollection#SyncRoot">
3298      <summary>
3299        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクトを取得します。</summary>
3300      <returns>
3301        <see cref="T:System.Collections.ICollection" /> へのアクセスを同期するために使用できるオブジェクト。<see cref="T:System.Collections.Generic.Stack`1" /> の既定の実装では、このプロパティは常に現在のインスタンスを返します。</returns>
3302    </member>
3303    <member name="M:System.Collections.Generic.Stack`1.System#Collections#IEnumerable#GetEnumerator">
3304      <summary>コレクションを反復処理する列挙子を返します。</summary>
3305      <returns>コレクションを反復処理するために使用できる <see cref="T:System.Collections.IEnumerator" />。</returns>
3306    </member>
3307    <member name="M:System.Collections.Generic.Stack`1.ToArray">
3308      <summary>
3309        <see cref="T:System.Collections.Generic.Stack`1" /> を新しい配列にコピーします。</summary>
3310      <returns>
3311        <see cref="T:System.Collections.Generic.Stack`1" /> の要素のコピーを格納する新しい配列。</returns>
3312    </member>
3313    <member name="M:System.Collections.Generic.Stack`1.TrimExcess">
3314      <summary>
3315        <see cref="T:System.Collections.Generic.Stack`1" /> 内にある実際の要素数が現在の容量の 90% 未満の場合は、容量をその数に設定します。</summary>
3316    </member>
3317    <member name="T:System.Collections.Generic.Stack`1.Enumerator">
3318      <summary>
3319        <see cref="T:System.Collections.Generic.Stack`1" /> の要素を列挙します。</summary>
3320    </member>
3321    <member name="P:System.Collections.Generic.Stack`1.Enumerator.Current">
3322      <summary>列挙子の現在位置の要素を取得します。</summary>
3323      <returns>
3324        <see cref="T:System.Collections.Generic.Stack`1" /> 内の、列挙子の現在位置にある要素。</returns>
3325      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
3326    </member>
3327    <member name="M:System.Collections.Generic.Stack`1.Enumerator.Dispose">
3328      <summary>
3329        <see cref="T:System.Collections.Generic.Stack`1.Enumerator" /> によって使用されているすべてのリソースを解放します。</summary>
3330    </member>
3331    <member name="M:System.Collections.Generic.Stack`1.Enumerator.MoveNext">
3332      <summary>列挙子を <see cref="T:System.Collections.Generic.Stack`1" /> の次の要素に進めます。</summary>
3333      <returns>列挙子が次の要素に正常に進んだ場合は true。列挙子がコレクションの末尾を越えた場合は false。</returns>
3334      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
3335    </member>
3336    <member name="P:System.Collections.Generic.Stack`1.Enumerator.System#Collections#IEnumerator#Current">
3337      <summary>列挙子の現在位置の要素を取得します。</summary>
3338      <returns>コレクション内の、列挙子の現在位置にある要素。</returns>
3339      <exception cref="T:System.InvalidOperationException">列挙子が、コレクションの最初の要素の前、または最後の要素の後に位置しています。</exception>
3340    </member>
3341    <member name="M:System.Collections.Generic.Stack`1.Enumerator.System#Collections#IEnumerator#Reset">
3342      <summary>列挙子を初期位置、つまりコレクションの最初の要素の前に設定します。このクラスは継承できません。</summary>
3343      <exception cref="T:System.InvalidOperationException">列挙子が作成された後に、コレクションが変更されました。</exception>
3344    </member>
3345  </members>
3346</doc>