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>전체 <see cref="T:System.Collections.BitArray" />의 <see cref="T:System.Collections.IEnumerator" />입니다.</returns>
74      <filterpriority>2</filterpriority>
75    </member>
76    <member name="P:System.Collections.BitArray.Item(System.Int32)">
77      <summary>
78        <see cref="T:System.Collections.BitArray" />의 특정 위치에서 비트 값을 가져오거나 설정합니다.</summary>
79      <returns>
80        <paramref name="index" /> 위치의 비트 값입니다.</returns>
81      <param name="index">가져오거나 설정할 값의 0부터 시작하는 인덱스입니다. </param>
82      <exception cref="T:System.ArgumentOutOfRangeException">
83        <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>
84      <filterpriority>2</filterpriority>
85    </member>
86    <member name="P:System.Collections.BitArray.Length">
87      <summary>
88        <see cref="T:System.Collections.BitArray" />의 요소 수를 가져오거나 설정합니다.</summary>
89      <returns>
90        <see cref="T:System.Collections.BitArray" />의 요소 수입니다.</returns>
91      <exception cref="T:System.ArgumentOutOfRangeException">The property is set to a value that is less than zero. </exception>
92      <filterpriority>2</filterpriority>
93    </member>
94    <member name="M:System.Collections.BitArray.Not">
95      <summary>true로 설정된 요소는 false로 변경되고 false로 설정된 요소는 true로 변경되도록 현재 <see cref="T:System.Collections.BitArray" />에 있는 모든 비트 값을 반전합니다.</summary>
96      <returns>반전된 비트 값을 가지는 현재 인스턴스입니다.</returns>
97      <filterpriority>2</filterpriority>
98    </member>
99    <member name="M:System.Collections.BitArray.Or(System.Collections.BitArray)">
100      <summary>현재 <see cref="T:System.Collections.BitArray" />의 요소와 지정한 <see cref="T:System.Collections.BitArray" />의 해당 요소에 대한 비트 OR 연산을 수행합니다.</summary>
101      <returns>현재 <see cref="T:System.Collections.BitArray" />의 요소와 지정한 <see cref="T:System.Collections.BitArray" />의 해당 요소에 대한 비트 OR 연산 결과가 포함된 현재 인스턴스입니다.</returns>
102      <param name="value">비트 OR 연산이 수행될 <see cref="T:System.Collections.BitArray" />입니다. </param>
103      <exception cref="T:System.ArgumentNullException">
104        <paramref name="value" /> is null. </exception>
105      <exception cref="T:System.ArgumentException">
106        <paramref name="value" /> and the current <see cref="T:System.Collections.BitArray" /> do not have the same number of elements. </exception>
107      <filterpriority>2</filterpriority>
108    </member>
109    <member name="M:System.Collections.BitArray.Set(System.Int32,System.Boolean)">
110      <summary>
111        <see cref="T:System.Collections.BitArray" />의 특정 위치에 있는 비트를 지정한 값으로 설정합니다.</summary>
112      <param name="index">설정할 비트의 0부터 시작하는 인덱스입니다. </param>
113      <param name="value">비트에 할당될 부울 값입니다. </param>
114      <exception cref="T:System.ArgumentOutOfRangeException">
115        <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>
116      <filterpriority>2</filterpriority>
117    </member>
118    <member name="M:System.Collections.BitArray.SetAll(System.Boolean)">
119      <summary>
120        <see cref="T:System.Collections.BitArray" />의 모든 비트를 지정한 값으로 설정합니다.</summary>
121      <param name="value">모든 비트에 할당할 부울 값입니다. </param>
122      <filterpriority>2</filterpriority>
123    </member>
124    <member name="M:System.Collections.BitArray.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
125      <summary>지정된 <see cref="T:System.Array" /> 인덱스부터 시작하여 <see cref="T:System.Collections.BitArray" />의 요소를 <see cref="T:System.Array" />에 복사합니다.</summary>
126      <param name="array">
127        <see cref="T:System.Collections.BitArray" />에서 복사한 요소의 대상인 1차원 <see cref="T:System.Array" />입니다.<see cref="T:System.Array" />에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
128      <param name="index">
129        <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>두 컬렉션 개체의 구조를 비교하기 위한 개체를 제공합니다.</summary>
167    </member>
168    <member name="P:System.Collections.StructuralComparisons.StructuralComparer">
169      <summary>두 개체의 구조를 비교하는 미리 정의된 개체를 가져옵니다.</summary>
170      <returns>두 컬렉션 개체의 구조를 비교하는 데 사용되는 미리 정의된 개체입니다.</returns>
171    </member>
172    <member name="P:System.Collections.StructuralComparisons.StructuralEqualityComparer">
173      <summary>두 개체의 구조가 같은지 비교하는 미리 정의된 개체를 가져옵니다.</summary>
174      <returns>두 컬렉션 개체의 구조가 같은지 비교하는 데 사용되는 미리 정의된 개체입니다.</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>파생된 클래스에서 재정의된 경우 같은 형식의 두 개체를 비교한 다음 한 개체가 다른 개체보다 작은지, 큰지 또는 두 개체가 같은지 여부를 나타내는 값을 반환합니다.</summary>
188      <returns>다음 표와 같이 <paramref name="x" /> 및 <paramref name="y" />의 상대 값을 나타내는 부호 있는 정수입니다.값 의미 0보다 작음 <paramref name="x" />가 <paramref name="y" />보다 작습니다.Zero <paramref name="x" />가 <paramref name="y" />와 같습니다.0보다 큼 <paramref name="x" />가 <paramref name="y" />보다 큰 경우</returns>
189      <param name="x">비교할 첫 번째 개체입니다.</param>
190      <param name="y">비교할 두 번째 개체입니다.</param>
191      <exception cref="T:System.ArgumentException">
192        <paramref name="T" /> 형식이 <see cref="T:System.IComparable`1" /> 제네릭 인터페이스나 <see cref="T:System.IComparable" /> 인터페이스를 구현하지 않는 경우</exception>
193    </member>
194    <member name="M:System.Collections.Generic.Comparer`1.Create(System.Comparison{`0})">
195      <summary>지정된 비교를 사용하여 비교자를 만듭니다.</summary>
196      <returns>새 비교자입니다.</returns>
197      <param name="comparison">사용할 비교입니다.</param>
198    </member>
199    <member name="P:System.Collections.Generic.Comparer`1.Default">
200      <summary>제네릭 인수에서 지정한 형식의 기본 정렬 순서 비교자를 반환합니다.</summary>
201      <returns>
202        <see cref="T:System.Collections.Generic.Comparer`1" />을 상속하고 <paramref name="T" /> 형식에 대한 정렬 순서 비교자의 역할을 하는 개체입니다.</returns>
203    </member>
204    <member name="M:System.Collections.Generic.Comparer`1.System#Collections#IComparer#Compare(System.Object,System.Object)">
205      <summary>두 개체를 비교하여 한 개체가 다른 개체보다 작거나, 같거나 또는 크다는 것을 나타내는 값을 반환합니다.</summary>
206      <returns>다음 표와 같이 <paramref name="x" /> 및 <paramref name="y" />의 상대 값을 나타내는 부호 있는 정수입니다.값 의미 0보다 작음<paramref name="x" />가 <paramref name="y" />보다 작습니다.Zero<paramref name="x" />가 <paramref name="y" />와 같습니다.0보다 큼<paramref name="x" />가 <paramref name="y" />보다 큰 경우</returns>
207      <param name="x">비교할 첫 번째 개체입니다.</param>
208      <param name="y">비교할 두 번째 개체입니다.</param>
209      <exception cref="T:System.ArgumentException">
210        <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>
211    </member>
212    <member name="T:System.Collections.Generic.Dictionary`2">
213      <summary>키와 값의 컬렉션을 나타냅니다.이 형식에 대 한.NET Framework 소스 코드를 찾아보려면 참조는 Reference Source.</summary>
214      <typeparam name="TKey">사전에 있는 키의 형식입니다.</typeparam>
215      <typeparam name="TValue">사전에 있는 값의 형식입니다.</typeparam>
216      <filterpriority>1</filterpriority>
217    </member>
218    <member name="M:System.Collections.Generic.Dictionary`2.#ctor">
219      <summary>기본 초기 용량을 갖고 있고 키 형식에 대한 기본 같음 비교자를 사용하는 비어 있는 <see cref="T:System.Collections.Generic.Dictionary`2" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
220    </member>
221    <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})">
222      <summary>지정한 <see cref="T:System.Collections.Generic.IDictionary`2" />에서 복사된 요소를 포함하고 키 형식에 대한 기본 같음 비교자를 사용하는 <see cref="T:System.Collections.Generic.Dictionary`2" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
223      <param name="dictionary">요소가 새 <see cref="T:System.Collections.Generic.IDictionary`2" />에 복사되는 <see cref="T:System.Collections.Generic.Dictionary`2" />입니다.</param>
224      <exception cref="T:System.ArgumentNullException">
225        <paramref name="dictionary" />가 null인 경우</exception>
226      <exception cref="T:System.ArgumentException">
227        <paramref name="dictionary" />에 중복 키가 하나 이상 포함된 경우</exception>
228    </member>
229    <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IEqualityComparer{`0})">
230      <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>
231      <param name="dictionary">요소가 새 <see cref="T:System.Collections.Generic.IDictionary`2" />에 복사되는 <see cref="T:System.Collections.Generic.Dictionary`2" />입니다.</param>
232      <param name="comparer">키를 비교할 때 사용할 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 구현을 지정하거나, 해당 키 형식에 기본 null을 사용하려면 <see cref="T:System.Collections.Generic.EqualityComparer`1" />을 지정합니다.</param>
233      <exception cref="T:System.ArgumentNullException">
234        <paramref name="dictionary" />가 null인 경우</exception>
235      <exception cref="T:System.ArgumentException">
236        <paramref name="dictionary" />에 중복 키가 하나 이상 포함된 경우</exception>
237    </member>
238    <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IEqualityComparer{`0})">
239      <summary>기본 초기 용량을 갖고 있고 지정된 <see cref="T:System.Collections.Generic.Dictionary`2" />을 사용하는 비어 있는 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
240      <param name="comparer">키를 비교할 때 사용할 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 구현을 지정하거나, 해당 키 형식에 기본 null을 사용하려면 <see cref="T:System.Collections.Generic.EqualityComparer`1" />을 지정합니다.</param>
241    </member>
242    <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Int32)">
243      <summary>지정된 초기 용량을 갖고 있고 키 형식에 대한 기본 같음 비교자를 사용하는 비어 있는 <see cref="T:System.Collections.Generic.Dictionary`2" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
244      <param name="capacity">
245        <see cref="T:System.Collections.Generic.Dictionary`2" />에 포함될 수 있는 초기 요소 수입니다.</param>
246      <exception cref="T:System.ArgumentOutOfRangeException">
247        <paramref name="capacity" />가 0보다 작은 경우</exception>
248    </member>
249    <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
250      <summary>지정된 초기 용량을 갖고 있고 지정된 <see cref="T:System.Collections.Generic.Dictionary`2" />을 사용하는 비어 있는 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
251      <param name="capacity">
252        <see cref="T:System.Collections.Generic.Dictionary`2" />에 포함될 수 있는 초기 요소 수입니다.</param>
253      <param name="comparer">키를 비교할 때 사용할 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 구현을 지정하거나, 해당 키 형식에 기본 null을 사용하려면 <see cref="T:System.Collections.Generic.EqualityComparer`1" />을 지정합니다.</param>
254      <exception cref="T:System.ArgumentOutOfRangeException">
255        <paramref name="capacity" />가 0보다 작은 경우</exception>
256    </member>
257    <member name="M:System.Collections.Generic.Dictionary`2.Add(`0,`1)">
258      <summary>지정한 키와 값을 사전에 추가합니다.</summary>
259      <param name="key">추가할 요소의 키입니다.</param>
260      <param name="value">추가할 요소의 값입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
261      <exception cref="T:System.ArgumentNullException">
262        <paramref name="key" />가 null인 경우</exception>
263      <exception cref="T:System.ArgumentException">같은 키를 가진 요소가 이미 <see cref="T:System.Collections.Generic.Dictionary`2" />에 있는 경우</exception>
264    </member>
265    <member name="M:System.Collections.Generic.Dictionary`2.Clear">
266      <summary>
267        <see cref="T:System.Collections.Generic.Dictionary`2" />에서 모든 키와 값을 제거합니다.</summary>
268    </member>
269    <member name="P:System.Collections.Generic.Dictionary`2.Comparer">
270      <summary>사전에 대한 키의 일치 여부를 확인하는 데 사용되는 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />을 가져옵니다. </summary>
271      <returns>현재 <see cref="T:System.Collections.Generic.Dictionary`2" />에 대한 키의 일치 여부를 확인하고 키에 대한 해시 값을 제공하는 데 사용되는 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 제네릭 인터페이스 구현입니다.</returns>
272    </member>
273    <member name="M:System.Collections.Generic.Dictionary`2.ContainsKey(`0)">
274      <summary>
275        <see cref="T:System.Collections.Generic.Dictionary`2" />에 지정한 키가 포함되어 있는지 여부를 확인합니다.</summary>
276      <returns>true에 지정한 키가 있는 요소가 포함되어 있으면 <see cref="T:System.Collections.Generic.Dictionary`2" />이고, 그렇지 않으면 false입니다.</returns>
277      <param name="key">
278        <see cref="T:System.Collections.Generic.Dictionary`2" />에서 찾을 수 있는 키입니다.</param>
279      <exception cref="T:System.ArgumentNullException">
280        <paramref name="key" />가 null인 경우</exception>
281    </member>
282    <member name="M:System.Collections.Generic.Dictionary`2.ContainsValue(`1)">
283      <summary>
284        <see cref="T:System.Collections.Generic.Dictionary`2" />에 특정 값이 들어 있는지 여부를 확인합니다.</summary>
285      <returns>true에 지정한 값이 있는 요소가 포함되어 있으면 <see cref="T:System.Collections.Generic.Dictionary`2" />이고, 그렇지 않으면 false입니다.</returns>
286      <param name="value">
287        <see cref="T:System.Collections.Generic.Dictionary`2" />에서 찾을 값입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
288    </member>
289    <member name="P:System.Collections.Generic.Dictionary`2.Count">
290      <summary>
291        <see cref="T:System.Collections.Generic.Dictionary`2" />에 포함된 키/값 쌍의 수를 가져옵니다.</summary>
292      <returns>
293        <see cref="T:System.Collections.Generic.Dictionary`2" />에 포함된 키/값 쌍의 수입니다.</returns>
294    </member>
295    <member name="M:System.Collections.Generic.Dictionary`2.GetEnumerator">
296      <summary>
297        <see cref="T:System.Collections.Generic.Dictionary`2" />를 반복하는 열거자를 반환합니다.</summary>
298      <returns>
299        <see cref="T:System.Collections.Generic.Dictionary`2" />에 대한 <see cref="T:System.Collections.Generic.Dictionary`2.Enumerator" /> 구조체입니다.</returns>
300    </member>
301    <member name="P:System.Collections.Generic.Dictionary`2.Item(`0)">
302      <summary>지정된 키에 연결된 값을 가져오거나 설정합니다.</summary>
303      <returns>지정한 키와 연결된 값입니다.지정한 키가 없으면 가져오기 작업에서 <see cref="T:System.Collections.Generic.KeyNotFoundException" />을 throw하고 설정 작업에서 지정한 키가 있는 새 요소를 만듭니다.</returns>
304      <param name="key">가져오거나 설정할 값의 키입니다.</param>
305      <exception cref="T:System.ArgumentNullException">
306        <paramref name="key" />가 null인 경우</exception>
307      <exception cref="T:System.Collections.Generic.KeyNotFoundException">속성을 검색할 때 컬렉션에 <paramref name="key" />가 없는 경우</exception>
308    </member>
309    <member name="P:System.Collections.Generic.Dictionary`2.Keys">
310      <summary>
311        <see cref="T:System.Collections.Generic.Dictionary`2" />의 키를 포함하는 컬렉션을 가져옵니다.</summary>
312      <returns>
313        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />의 키를 포함하는 <see cref="T:System.Collections.Generic.Dictionary`2" />입니다.</returns>
314    </member>
315    <member name="M:System.Collections.Generic.Dictionary`2.Remove(`0)">
316      <summary>
317        <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.ICollection`1" />의 요소를  <see cref="T:System.Collections.Generic.KeyValuePair`2" />형식의 배열에 복사합니다.</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">
343        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
344      <exception cref="T:System.ArgumentNullException">
345        <paramref name="array" />가 null인 경우</exception>
346      <exception cref="T:System.ArgumentOutOfRangeException">
347        <paramref name="index" />가 0보다 작은 경우</exception>
348      <exception cref="T:System.ArgumentException">소스 <see cref="T:System.Collections.Generic.ICollection`1" />의 요소 수가 <paramref name="index" />에서 대상 <paramref name="array" /> 끝까지 사용 가능한 공간보다 큰 경우</exception>
349    </member>
350    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#IsReadOnly">
351      <summary>사전이 읽기 전용인지를 나타내는 값을 가져옵니다.</summary>
352      <returns>true가 읽기 전용이면 <see cref="T:System.Collections.Generic.ICollection`1" />이고, 그렇지 않으면 false입니다.<see cref="T:System.Collections.Generic.Dictionary`2" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
353    </member>
354    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
355      <summary>사전에서 키와 값을 제거합니다.</summary>
356      <returns>
357        <paramref name="keyValuePair" />로 표시된 키와 값을 찾아서 제거한 경우 true이고, 그렇지 않으면 false입니다.이 메서드는 <paramref name="keyValuePair" />가 <see cref="T:System.Collections.Generic.ICollection`1" />에 없는 경우 false을 반환합니다.</returns>
358      <param name="keyValuePair">
359        <see cref="T:System.Collections.Generic.Dictionary`2" />에서 제거할 키와 값을 나타내는 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 구조체입니다.</param>
360    </member>
361    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
362      <summary>
363        <see cref="T:System.Collections.Generic.ICollection`1" />의 키를 포함하는 <see cref="T:System.Collections.Generic.IDictionary`2" />을 가져옵니다.</summary>
364      <returns>
365        <see cref="T:System.Collections.Generic.IDictionary`2" />의 키를 포함하는 <paramref name="TKey" /> 형식의 <see cref="T:System.Collections.Generic.ICollection`1" />입니다.</returns>
366    </member>
367    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
368      <summary>
369        <see cref="T:System.Collections.Generic.ICollection`1" />의 값이 들어 있는 <see cref="T:System.Collections.Generic.IDictionary`2" />을 가져옵니다.</summary>
370      <returns>
371        <see cref="T:System.Collections.Generic.IDictionary`2" />의 값을 포함하는 <paramref name="TValue" /> 형식의 <see cref="T:System.Collections.Generic.ICollection`1" />입니다.</returns>
372    </member>
373    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
374      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
375      <returns>컬렉션에서 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.Generic.IEnumerator`1" />입니다.</returns>
376    </member>
377    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Keys">
378      <summary>
379        <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" />의 키를 포함하는 컬렉션을 가져옵니다.</summary>
380      <returns>
381        <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" />의 키가 포함된 컬렉션입니다.</returns>
382    </member>
383    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Values">
384      <summary>
385        <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" />의 값을 포함하는 컬렉션을 가져옵니다.</summary>
386      <returns>
387        <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" />의 값을 포함하는 컬렉션입니다.</returns>
388    </member>
389    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
390      <summary>지정한 배열 인덱스부터 <see cref="T:System.Collections.Generic.ICollection`1" />의 요소를 배열에 복사합니다.</summary>
391      <param name="array">
392        <see cref="T:System.Collections.Generic.ICollection`1" />에서 복사한 요소의 대상인 1차원 배열입니다.배열에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
393      <param name="index">
394        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
395      <exception cref="T:System.ArgumentNullException">
396        <paramref name="array" />가 null인 경우</exception>
397      <exception cref="T:System.ArgumentOutOfRangeException">
398        <paramref name="index" />가 0보다 작은 경우</exception>
399      <exception cref="T:System.ArgumentException">
400        <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>
401    </member>
402    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#IsSynchronized">
403      <summary>
404        <see cref="T:System.Collections.ICollection" />에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되는지를 나타내는 값을 가져옵니다.</summary>
405      <returns>true에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되면 <see cref="T:System.Collections.ICollection" />이고, 그렇지 않으면 false입니다.<see cref="T:System.Collections.Generic.Dictionary`2" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
406    </member>
407    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#SyncRoot">
408      <summary>
409        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다.</summary>
410      <returns>
411        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체입니다. </returns>
412    </member>
413    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
414      <summary>지정한 키와 값을 사전에 추가합니다.</summary>
415      <param name="key">키로 사용할 개체입니다.</param>
416      <param name="value">값으로 사용할 개체입니다.</param>
417      <exception cref="T:System.ArgumentNullException">
418        <paramref name="key" />가 null인 경우</exception>
419      <exception cref="T:System.ArgumentException">
420        <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>
421    </member>
422    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Contains(System.Object)">
423      <summary>지정된 키를 갖는 요소가 <see cref="T:System.Collections.IDictionary" />에 들어 있는지 여부를 결정합니다.</summary>
424      <returns>true에 지정한 키가 있는 요소가 포함되어 있으면 <see cref="T:System.Collections.IDictionary" />이고, 그렇지 않으면 false입니다.</returns>
425      <param name="key">
426        <see cref="T:System.Collections.IDictionary" />에서 찾을 수 있는 키입니다.</param>
427      <exception cref="T:System.ArgumentNullException">
428        <paramref name="key" />가 null인 경우</exception>
429    </member>
430    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#GetEnumerator">
431      <summary>
432        <see cref="T:System.Collections.IDictionaryEnumerator" />에 대한 <see cref="T:System.Collections.IDictionary" />를 반환합니다.</summary>
433      <returns>
434        <see cref="T:System.Collections.IDictionaryEnumerator" />에 대한 <see cref="T:System.Collections.IDictionary" />입니다.</returns>
435    </member>
436    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#IsFixedSize">
437      <summary>
438        <see cref="T:System.Collections.IDictionary" />의 크기가 고정되어 있는지 여부를 나타내는 값을 가져옵니다.</summary>
439      <returns>true의 크기가 고정되어 있으면 <see cref="T:System.Collections.IDictionary" />이고, 그렇지 않으면 false입니다.<see cref="T:System.Collections.Generic.Dictionary`2" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
440    </member>
441    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#IsReadOnly">
442      <summary>
443        <see cref="T:System.Collections.IDictionary" />가 읽기 전용인지 여부를 나타내는 값을 가져옵니다.</summary>
444      <returns>true가 읽기 전용이면 <see cref="T:System.Collections.IDictionary" />이고, 그렇지 않으면 false입니다.<see cref="T:System.Collections.Generic.Dictionary`2" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
445    </member>
446    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Item(System.Object)">
447      <summary>지정한 키가 있는 값을 가져오거나 설정합니다.</summary>
448      <returns>지정한 키와 연결된 값입니다. <paramref name="key" />가 사전에 없거나 <paramref name="key" />의 형식을 <see cref="T:System.Collections.Generic.Dictionary`2" />의 키 형식 <paramref name="TKey" />에 할당할 수 없으면 null입니다.</returns>
449      <param name="key">가져올 값의 키입니다.</param>
450      <exception cref="T:System.ArgumentNullException">
451        <paramref name="key" />가 null인 경우</exception>
452      <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>
453    </member>
454    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Keys">
455      <summary>
456        <see cref="T:System.Collections.ICollection" />의 키를 포함하는 <see cref="T:System.Collections.IDictionary" />을 가져옵니다.</summary>
457      <returns>
458        <see cref="T:System.Collections.ICollection" />의 키를 포함하는 <see cref="T:System.Collections.IDictionary" />입니다.</returns>
459    </member>
460    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Remove(System.Object)">
461      <summary>
462        <see cref="T:System.Collections.IDictionary" />에서 지정한 키를 가지는 요소를 제거합니다.</summary>
463      <param name="key">제거할 요소의 키입니다.</param>
464      <exception cref="T:System.ArgumentNullException">
465        <paramref name="key" />가 null인 경우</exception>
466    </member>
467    <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Values">
468      <summary>
469        <see cref="T:System.Collections.ICollection" />의 값이 들어 있는 <see cref="T:System.Collections.IDictionary" />을 가져옵니다.</summary>
470      <returns>
471        <see cref="T:System.Collections.ICollection" />의 값을 포함하는 <see cref="T:System.Collections.IDictionary" />입니다.</returns>
472    </member>
473    <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IEnumerable#GetEnumerator">
474      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
475      <returns>컬렉션에서 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.IEnumerator" />입니다.</returns>
476    </member>
477    <member name="M:System.Collections.Generic.Dictionary`2.TryGetValue(`0,`1@)">
478      <summary>지정한 키와 연결된 값을 가져옵니다.</summary>
479      <returns>true에 지정한 키가 있는 요소가 포함되어 있으면 <see cref="T:System.Collections.Generic.Dictionary`2" />이고, 그렇지 않으면 false입니다.</returns>
480      <param name="key">가져올 값의 키입니다.</param>
481      <param name="value">이 메서드가 반환될 때 지정된 키가 있으면 해당 키와 연결된 값을 포함하고, 그렇지 않으면 <paramref name="value" /> 매개 변수의 형식의 기본값을 포함합니다.이 매개 변수는 초기화되지 않은 상태로 전달됩니다.</param>
482      <exception cref="T:System.ArgumentNullException">
483        <paramref name="key" />가 null인 경우</exception>
484    </member>
485    <member name="P:System.Collections.Generic.Dictionary`2.Values">
486      <summary>
487        <see cref="T:System.Collections.Generic.Dictionary`2" />의 키를 포함하는 컬렉션을 가져옵니다.</summary>
488      <returns>
489        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />의 값을 포함하는 <see cref="T:System.Collections.Generic.Dictionary`2" />입니다.</returns>
490    </member>
491    <member name="T:System.Collections.Generic.Dictionary`2.Enumerator">
492      <summary>
493        <see cref="T:System.Collections.Generic.Dictionary`2" />의 요소를 열거합니다.</summary>
494    </member>
495    <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.Current">
496      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
497      <returns>
498        <see cref="T:System.Collections.Generic.Dictionary`2" />에서 열거자의 현재 위치에 있는 요소입니다.</returns>
499    </member>
500    <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.Dispose">
501      <summary>
502        <see cref="T:System.Collections.Generic.Dictionary`2.Enumerator" />에서 사용하는 모든 리소스를 해제합니다.</summary>
503    </member>
504    <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.MoveNext">
505      <summary>열거자를 <see cref="T:System.Collections.Generic.Dictionary`2" />의 다음 요소로 이동합니다.</summary>
506      <returns>열거자가 다음 요소로 이동한 경우 true가 반환되고, 컬렉션의 끝을 지난 경우 false가 반환됩니다.</returns>
507      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
508    </member>
509    <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Entry">
510      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
511      <returns>사전에서 열거자의 현재 위치에 있는 요소인 <see cref="T:System.Collections.DictionaryEntry" />입니다.</returns>
512      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
513    </member>
514    <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Key">
515      <summary>열거자의 현재 위치에 있는 요소의 키를 가져옵니다.</summary>
516      <returns>사전에서 열거자의 현재 위치에 있는 요소의 키입니다.</returns>
517      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
518    </member>
519    <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Value">
520      <summary>열거자의 현재 위치에 있는 요소의 값을 가져옵니다.</summary>
521      <returns>사전에서 열거자의 현재 위치에 있는 요소의 값입니다.</returns>
522      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
523    </member>
524    <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IEnumerator#Current">
525      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
526      <returns>컬렉션에서 열거자의 현재 위치에 있는 요소인 <see cref="T:System.Object" />입니다.</returns>
527      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
528    </member>
529    <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IEnumerator#Reset">
530      <summary>컬렉션의 첫 번째 요소 앞의 초기 위치에 열거자를 설정합니다.</summary>
531      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
532    </member>
533    <member name="T:System.Collections.Generic.Dictionary`2.KeyCollection">
534      <summary>
535        <see cref="T:System.Collections.Generic.Dictionary`2" />의 키 컬렉션을 나타냅니다.이 클래스는 상속될 수 없습니다.</summary>
536    </member>
537    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.#ctor(System.Collections.Generic.Dictionary{`0,`1})">
538      <summary>지정한 <see cref="T:System.Collections.Generic.Dictionary`2" />의 키를 반영하는 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
539      <param name="dictionary">해당 키가 새 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />에 반영되는 <see cref="T:System.Collections.Generic.Dictionary`2" />입니다.</param>
540      <exception cref="T:System.ArgumentNullException">
541        <paramref name="dictionary" />가 null입니다.</exception>
542    </member>
543    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.CopyTo(`0[],System.Int32)">
544      <summary>
545        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 요소를 지정한 배열 인덱스에서 시작하여 기존의 1차원 <see cref="T:System.Array" />에 복사합니다.</summary>
546      <param name="array">
547        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />에서 복사한 요소의 대상인 일차원 <see cref="T:System.Array" />입니다.<see cref="T:System.Array" />에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
548      <param name="index">
549        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
550      <exception cref="T:System.ArgumentNullException">
551        <paramref name="array" />가 null입니다. </exception>
552      <exception cref="T:System.ArgumentOutOfRangeException">
553        <paramref name="index" />가 0보다 작은 경우</exception>
554      <exception cref="T:System.ArgumentException">소스 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />의 요소 수가 <paramref name="index" />에서 대상 <paramref name="array" /> 끝까지 사용 가능한 공간보다 큰 경우</exception>
555    </member>
556    <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Count">
557      <summary>
558        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />에 포함된 요소 수를 가져옵니다.</summary>
559      <returns>
560        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />에 포함된 요소 수입니다.이 속성의 값을 검색하는 것은 O(1) 연산입니다.</returns>
561    </member>
562    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.GetEnumerator">
563      <summary>
564        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />을 반복하는 열거자를 반환합니다.</summary>
565      <returns>
566        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />에 대한 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator" />입니다.</returns>
567    </member>
568    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Add(`0)">
569      <summary>
570        <see cref="T:System.Collections.Generic.ICollection`1" />에 항목을 추가합니다.  이 구현은 항상 <see cref="T:System.NotSupportedException" />을 throw합니다.</summary>
571      <param name="item">
572        <see cref="T:System.Collections.Generic.ICollection`1" />에 추가할 개체입니다.</param>
573      <exception cref="T:System.NotSupportedException">항상 throw됩니다.</exception>
574    </member>
575    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Clear">
576      <summary>
577        <see cref="T:System.Collections.Generic.ICollection`1" />에서 항목을 모두 제거합니다.  이 구현은 항상 <see cref="T:System.NotSupportedException" />을 throw합니다.</summary>
578      <exception cref="T:System.NotSupportedException">항상 throw됩니다.</exception>
579    </member>
580    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Contains(`0)">
581      <summary>
582        <see cref="T:System.Collections.Generic.ICollection`1" />에 특정 값이 들어 있는지 여부를 확인합니다.</summary>
583      <returns>
584        <paramref name="item" />가 <see cref="T:System.Collections.Generic.ICollection`1" />에 있으면 true이고, 그렇지 않으면 false입니다.</returns>
585      <param name="item">
586        <see cref="T:System.Collections.Generic.ICollection`1" />에서 찾을 개체입니다.</param>
587    </member>
588    <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#IsReadOnly">
589      <summary>
590        <see cref="T:System.Collections.Generic.ICollection`1" />이 읽기 전용인지 여부를 나타내는 값을 가져옵니다.</summary>
591      <returns>
592        <see cref="T:System.Collections.Generic.ICollection`1" />이 읽기 전용이면 true이고, 그렇지 않으면 false입니다.  <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />의 기본 구현에서 이 속성은 언제나 true를 반환합니다.</returns>
593    </member>
594    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Remove(`0)">
595      <summary>
596        <see cref="T:System.Collections.Generic.ICollection`1" />에서 맨 처음 발견되는 특정 개체를 제거합니다.  이 구현은 항상 <see cref="T:System.NotSupportedException" />을 throw합니다.</summary>
597      <returns>
598        <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>
599      <param name="item">
600        <see cref="T:System.Collections.Generic.ICollection`1" />에서 제거할 개체입니다.</param>
601      <exception cref="T:System.NotSupportedException">항상 throw됩니다.</exception>
602    </member>
603    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
604      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
605      <returns>컬렉션에서 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.Generic.IEnumerator`1" />입니다.</returns>
606    </member>
607    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
608      <summary>특정 <see cref="T:System.Array" /> 인덱스부터 시작하여 <see cref="T:System.Collections.ICollection" />의 요소를 <see cref="T:System.Array" />에 복사합니다.</summary>
609      <param name="array">
610        <see cref="T:System.Collections.ICollection" />에서 복사한 요소의 대상인 일차원 <see cref="T:System.Array" />입니다.<see cref="T:System.Array" />에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
611      <param name="index">
612        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
613      <exception cref="T:System.ArgumentNullException">
614        <paramref name="array" />가 null입니다.</exception>
615      <exception cref="T:System.ArgumentOutOfRangeException">
616        <paramref name="index" />가 0보다 작은 경우</exception>
617      <exception cref="T:System.ArgumentException">
618        <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>
619    </member>
620    <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#IsSynchronized">
621      <summary>
622        <see cref="T:System.Collections.ICollection" />에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되는지 여부를 나타내는 값을 가져옵니다.</summary>
623      <returns>
624        <see cref="T:System.Collections.ICollection" />에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되면 true이고, 그렇지 않으면 false입니다.  <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
625    </member>
626    <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#SyncRoot">
627      <summary>
628        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다.</summary>
629      <returns>
630        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체입니다.  <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />의 기본 구현에서 이 속성은 언제나 현재 인스턴스를 반환합니다.</returns>
631    </member>
632    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#IEnumerable#GetEnumerator">
633      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
634      <returns>컬렉션에서 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.IEnumerator" />입니다.</returns>
635    </member>
636    <member name="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator">
637      <summary>
638        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />의 요소를 열거합니다.</summary>
639    </member>
640    <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.Current">
641      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
642      <returns>
643        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />에서 열거자의 현재 위치에 있는 요소입니다.</returns>
644    </member>
645    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.Dispose">
646      <summary>
647        <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator" />에서 사용하는 모든 리소스를 해제합니다.</summary>
648    </member>
649    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.MoveNext">
650      <summary>열거자를 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />의 다음 요소로 이동합니다.</summary>
651      <returns>열거자가 다음 요소로 이동한 경우 true이(가) 반환되고, 컬렉션의 끝을 지난 경우 false이(가) 반환됩니다.</returns>
652      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
653    </member>
654    <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Current">
655      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
656      <returns>컬렉션에서 열거자의 현재 위치에 있는 요소입니다.</returns>
657      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
658    </member>
659    <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Reset">
660      <summary>컬렉션의 첫 번째 요소 앞의 초기 위치에 열거자를 설정합니다.</summary>
661      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
662    </member>
663    <member name="T:System.Collections.Generic.Dictionary`2.ValueCollection">
664      <summary>
665        <see cref="T:System.Collections.Generic.Dictionary`2" />의 값 컬렉션을 나타냅니다.이 클래스는 상속될 수 없습니다.</summary>
666    </member>
667    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.#ctor(System.Collections.Generic.Dictionary{`0,`1})">
668      <summary>지정한 <see cref="T:System.Collections.Generic.Dictionary`2" />의 값을 반영하는 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
669      <param name="dictionary">해당 값이 새 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />에 반영되는 <see cref="T:System.Collections.Generic.Dictionary`2" />입니다.</param>
670      <exception cref="T:System.ArgumentNullException">
671        <paramref name="dictionary" />가 null입니다.</exception>
672    </member>
673    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.CopyTo(`1[],System.Int32)">
674      <summary>
675        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 요소를 지정한 배열 인덱스에서 시작하여 기존의 1차원 <see cref="T:System.Array" />에 복사합니다.</summary>
676      <param name="array">
677        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />에서 복사한 요소의 대상인 일차원 <see cref="T:System.Array" />입니다.<see cref="T:System.Array" />에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
678      <param name="index">
679        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
680      <exception cref="T:System.ArgumentNullException">
681        <paramref name="array" />가 null입니다.</exception>
682      <exception cref="T:System.ArgumentOutOfRangeException">
683        <paramref name="index" />가 0보다 작은 경우</exception>
684      <exception cref="T:System.ArgumentException">소스 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />의 요소 수가 <paramref name="index" />에서 대상 <paramref name="array" /> 끝까지 사용 가능한 공간보다 큰 경우</exception>
685    </member>
686    <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Count">
687      <summary>
688        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />에 포함된 요소 수를 가져옵니다.</summary>
689      <returns>
690        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />에 포함된 요소 수입니다.</returns>
691    </member>
692    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.GetEnumerator">
693      <summary>
694        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />을 반복하는 열거자를 반환합니다.</summary>
695      <returns>
696        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />에 대한 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator" />입니다.</returns>
697    </member>
698    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Add(`1)">
699      <summary>
700        <see cref="T:System.Collections.Generic.ICollection`1" />에 항목을 추가합니다.  이 구현은 항상 <see cref="T:System.NotSupportedException" />을 throw합니다.</summary>
701      <param name="item">
702        <see cref="T:System.Collections.Generic.ICollection`1" />에 추가할 개체입니다.</param>
703      <exception cref="T:System.NotSupportedException">항상 throw됩니다.</exception>
704    </member>
705    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Clear">
706      <summary>
707        <see cref="T:System.Collections.Generic.ICollection`1" />에서 항목을 모두 제거합니다.  이 구현은 항상 <see cref="T:System.NotSupportedException" />을 throw합니다.</summary>
708      <exception cref="T:System.NotSupportedException">항상 throw됩니다.</exception>
709    </member>
710    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Contains(`1)">
711      <summary>
712        <see cref="T:System.Collections.Generic.ICollection`1" />에 특정 값이 들어 있는지 여부를 확인합니다.</summary>
713      <returns>
714        <paramref name="item" />가 <see cref="T:System.Collections.Generic.ICollection`1" />에 있으면 true이고, 그렇지 않으면 false입니다.</returns>
715      <param name="item">
716        <see cref="T:System.Collections.Generic.ICollection`1" />에서 찾을 개체입니다.</param>
717    </member>
718    <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#IsReadOnly">
719      <summary>
720        <see cref="T:System.Collections.Generic.ICollection`1" />이 읽기 전용인지 여부를 나타내는 값을 가져옵니다.</summary>
721      <returns>
722        <see cref="T:System.Collections.Generic.ICollection`1" />이 읽기 전용이면 true이고, 그렇지 않으면 false입니다.  <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />의 기본 구현에서 이 속성은 언제나 true를 반환합니다.</returns>
723    </member>
724    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Remove(`1)">
725      <summary>
726        <see cref="T:System.Collections.Generic.ICollection`1" />에서 맨 처음 발견되는 특정 개체를 제거합니다.이 구현은 항상 <see cref="T:System.NotSupportedException" />을 throw합니다.</summary>
727      <returns>
728        <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>
729      <param name="item">
730        <see cref="T:System.Collections.Generic.ICollection`1" />에서 제거할 개체입니다.</param>
731      <exception cref="T:System.NotSupportedException">항상 throw됩니다.</exception>
732    </member>
733    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
734      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
735      <returns>컬렉션에서 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.Generic.IEnumerator`1" />입니다.</returns>
736    </member>
737    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
738      <summary>특정 <see cref="T:System.Array" /> 인덱스에서 시작하여 <see cref="T:System.Collections.ICollection" />의 요소를 <see cref="T:System.Array" />에 복사합니다.</summary>
739      <param name="array">
740        <see cref="T:System.Collections.ICollection" />에서 복사한 요소의 대상인 일차원 <see cref="T:System.Array" />입니다.<see cref="T:System.Array" />에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
741      <param name="index">
742        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
743      <exception cref="T:System.ArgumentNullException">
744        <paramref name="array" />가 null입니다.</exception>
745      <exception cref="T:System.ArgumentOutOfRangeException">
746        <paramref name="index" />가 0보다 작은 경우</exception>
747      <exception cref="T:System.ArgumentException">
748        <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>
749    </member>
750    <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#IsSynchronized">
751      <summary>
752        <see cref="T:System.Collections.ICollection" />에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되는지 여부를 나타내는 값을 가져옵니다.</summary>
753      <returns>
754        <see cref="T:System.Collections.ICollection" />에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되면 true이고, 그렇지 않으면 false입니다.  <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
755    </member>
756    <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#SyncRoot">
757      <summary>
758        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다.</summary>
759      <returns>
760        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체입니다.  <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />의 기본 구현에서 이 속성은 언제나 현재 인스턴스를 반환합니다.</returns>
761    </member>
762    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#IEnumerable#GetEnumerator">
763      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
764      <returns>컬렉션에서 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.IEnumerator" />입니다.</returns>
765    </member>
766    <member name="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator">
767      <summary>
768        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />의 요소를 열거합니다.</summary>
769    </member>
770    <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.Current">
771      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
772      <returns>
773        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />에서 열거자의 현재 위치에 있는 요소입니다.</returns>
774    </member>
775    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.Dispose">
776      <summary>
777        <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator" />에서 사용하는 모든 리소스를 해제합니다.</summary>
778    </member>
779    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.MoveNext">
780      <summary>열거자를 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />의 다음 요소로 이동합니다.</summary>
781      <returns>열거자가 다음 요소로 이동한 경우 true가 반환되고, 컬렉션의 끝을 지난 경우 false가 반환됩니다.</returns>
782      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
783    </member>
784    <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Current">
785      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
786      <returns>컬렉션에서 열거자의 현재 위치에 있는 요소입니다.</returns>
787      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
788    </member>
789    <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Reset">
790      <summary>컬렉션의 첫 번째 요소 앞의 초기 위치에 열거자를 설정합니다.</summary>
791      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
792    </member>
793    <member name="T:System.Collections.Generic.EqualityComparer`1">
794      <summary>
795        <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 제네릭 인터페이스의 구현에 대한 기본 클래스를 제공합니다.</summary>
796      <typeparam name="T">비교할 개체의 형식입니다.</typeparam>
797    </member>
798    <member name="M:System.Collections.Generic.EqualityComparer`1.#ctor">
799      <summary>
800        <see cref="T:System.Collections.Generic.EqualityComparer`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
801    </member>
802    <member name="P:System.Collections.Generic.EqualityComparer`1.Default">
803      <summary>제네릭 인수에서 지정한 형식의 기본 같음 비교자를 반환합니다.</summary>
804      <returns>
805        <paramref name="T" /> 형식에 대한 <see cref="T:System.Collections.Generic.EqualityComparer`1" /> 클래스의 기본 인스턴스입니다.</returns>
806    </member>
807    <member name="M:System.Collections.Generic.EqualityComparer`1.Equals(`0,`0)">
808      <summary>파생 클래스에서 재정의되면 <paramref name="T" /> 형식의 두 개체가 같은지를 확인합니다.</summary>
809      <returns>지정한 개체가 같으면 true이고, 그렇지 않으면 false입니다.</returns>
810      <param name="x">비교할 첫 번째 개체입니다.</param>
811      <param name="y">비교할 두 번째 개체입니다.</param>
812    </member>
813    <member name="M:System.Collections.Generic.EqualityComparer`1.GetHashCode(`0)">
814      <summary>파생 클래스에서 재정의되면 해시 테이블 같은 해시 알고리즘과 데이터 구조의 지정한 개체에 대한 해시 함수의 역할을 합니다.</summary>
815      <returns>지정한 개체의 해시 코드입니다.</returns>
816      <param name="obj">해시 코드를 가져오는 개체입니다.</param>
817      <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is null.</exception>
818    </member>
819    <member name="M:System.Collections.Generic.EqualityComparer`1.System#Collections#IEqualityComparer#Equals(System.Object,System.Object)">
820      <summary>지정한 개체가 같은지를 확인합니다.</summary>
821      <returns>지정한 개체가 같으면 true이고, 그렇지 않으면 false입니다.</returns>
822      <param name="x">비교할 첫 번째 개체입니다.</param>
823      <param name="y">비교할 두 번째 개체입니다.</param>
824      <exception cref="T:System.ArgumentException">
825        <paramref name="x" /> or <paramref name="y" /> is of a type that cannot be cast to type <paramref name="T" />.</exception>
826    </member>
827    <member name="M:System.Collections.Generic.EqualityComparer`1.System#Collections#IEqualityComparer#GetHashCode(System.Object)">
828      <summary>지정한 개체의 해시 코드를 반환합니다.</summary>
829      <returns>지정한 개체의 해시 코드입니다.</returns>
830      <param name="obj">해시 코드가 반환될 <see cref="T:System.Object" />입니다.</param>
831      <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>
832    </member>
833    <member name="T:System.Collections.Generic.HashSet`1">
834      <summary>값 집합을 나타냅니다.이 형식에 대 한.NET Framework 소스 코드를 찾아보려면 참조는 Reference Source.</summary>
835      <typeparam name="T">해시 집합에 있는 요소의 형식입니다.</typeparam>
836    </member>
837    <member name="M:System.Collections.Generic.HashSet`1.#ctor">
838      <summary>비어 있으며 집합 형식에 대한 기본 같음 비교자를 사용하는 <see cref="T:System.Collections.Generic.HashSet`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
839    </member>
840    <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
841      <summary>집합 형식에 대한 기본 같음 비교자를 사용하고 지정된 컬렉션에서 복사한 요소가 들어 있으며 복사된 요소 수를 수용하기에 용량이 충분한 <see cref="T:System.Collections.Generic.HashSet`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
842      <param name="collection">해당 요소가 새 집합에 복사되는 컬렉션입니다.</param>
843      <exception cref="T:System.ArgumentNullException">
844        <paramref name="collection" />가 null인 경우</exception>
845    </member>
846    <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0})">
847      <summary>집합 형식에 대한 지정된 같음 비교자를 사용하고 지정된 컬렉션에서 복사한 요소가 들어 있으며 복사된 요소 수를 수용하기에 용량이 충분한 <see cref="T:System.Collections.Generic.HashSet`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
848      <param name="collection">해당 요소가 새 집합에 복사되는 컬렉션입니다.</param>
849      <param name="comparer">집합의 값을 비교하려면 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 구현을 사용하고, 집합 형식에 대한 기본 <see cref="T:System.Collections.Generic.EqualityComparer`1" /> 구현을 사용하려면 null을(를) 지정합니다.</param>
850      <exception cref="T:System.ArgumentNullException">
851        <paramref name="collection" />가 null인 경우</exception>
852    </member>
853    <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEqualityComparer{`0})">
854      <summary>비어 있으며 집합 형식에 대한 지정된 같음 비교자를 사용하는 <see cref="T:System.Collections.Generic.HashSet`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
855      <param name="comparer">집합의 값을 비교하려면 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 구현을 사용하고, 집합 형식에 대한 기본 <see cref="T:System.Collections.Generic.EqualityComparer`1" /> 구현을 사용하려면 null을(를) 지정합니다.</param>
856    </member>
857    <member name="M:System.Collections.Generic.HashSet`1.Add(`0)">
858      <summary>지정된 요소를 집합에 추가합니다.</summary>
859      <returns>요소가 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체에 추가되었으면 true이고, 요소가 이미 있으면 false입니다.</returns>
860      <param name="item">집합에 추가할 요소입니다.</param>
861    </member>
862    <member name="M:System.Collections.Generic.HashSet`1.Clear">
863      <summary>
864        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체에서 요소를 모두 제거합니다.</summary>
865    </member>
866    <member name="P:System.Collections.Generic.HashSet`1.Comparer">
867      <summary>집합의 값이 같은지 확인하는 데 사용되는 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 개체를 가져옵니다.</summary>
868      <returns>집합의 값이 같은지 확인하는 데 사용되는 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 개체입니다.</returns>
869    </member>
870    <member name="M:System.Collections.Generic.HashSet`1.Contains(`0)">
871      <summary>
872        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체에 지정된 요소가 포함되어 있는지 확인합니다.</summary>
873      <returns>
874        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체에 지정된 요소가 들어 있으면 true이고, 그렇지 않으면 false입니다.</returns>
875      <param name="item">
876        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체에서 찾을 요소입니다.</param>
877    </member>
878    <member name="M:System.Collections.Generic.HashSet`1.CopyTo(`0[])">
879      <summary>
880        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체의 요소를 배열에 복사합니다.</summary>
881      <param name="array">
882        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체에서 복사한 요소의 대상인 1차원 배열입니다.배열에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
883      <exception cref="T:System.ArgumentNullException">
884        <paramref name="array" />가 null인 경우</exception>
885    </member>
886    <member name="M:System.Collections.Generic.HashSet`1.CopyTo(`0[],System.Int32)">
887      <summary>지정된 배열 인덱스에서 시작하여 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체의 요소를 배열에 복사합니다.</summary>
888      <param name="array">
889        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체에서 복사한 요소의 대상인 1차원 배열입니다.배열에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
890      <param name="arrayIndex">
891        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
892      <exception cref="T:System.ArgumentNullException">
893        <paramref name="array" />가 null인 경우</exception>
894      <exception cref="T:System.ArgumentOutOfRangeException">
895        <paramref name="arrayIndex" />가 0보다 작은 경우</exception>
896      <exception cref="T:System.ArgumentException">
897        <paramref name="arrayIndex" />가 대상 <paramref name="array" />의 길이보다 큰 경우</exception>
898    </member>
899    <member name="M:System.Collections.Generic.HashSet`1.CopyTo(`0[],System.Int32,System.Int32)">
900      <summary>지정된 배열 인덱스에서 시작하여 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체에서 지정된 수의 요소를 배열에 복사합니다.</summary>
901      <param name="array">
902        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체에서 복사한 요소의 대상인 1차원 배열입니다.배열에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
903      <param name="arrayIndex">
904        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
905      <param name="count">
906        <paramref name="array" />에 복사할 요소의 수입니다.</param>
907      <exception cref="T:System.ArgumentNullException">
908        <paramref name="array" />가 null인 경우</exception>
909      <exception cref="T:System.ArgumentOutOfRangeException">
910        <paramref name="arrayIndex" />가 0보다 작은 경우또는<paramref name="count" />가 0보다 작은 경우</exception>
911      <exception cref="T:System.ArgumentException">
912        <paramref name="arrayIndex" />가 대상 <paramref name="array" />의 길이보다 큰 경우또는<paramref name="count" />가 <paramref name="index" />에서 대상 <paramref name="array" /> 끝까지 사용 가능한 공간보다 큰 경우</exception>
913    </member>
914    <member name="P:System.Collections.Generic.HashSet`1.Count">
915      <summary>집합에 포함된 요소 수를 가져옵니다.</summary>
916      <returns>집합에 포함된 요소 수입니다.</returns>
917    </member>
918    <member name="M:System.Collections.Generic.HashSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0})">
919      <summary>현재 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체에서 지정된 컬렉션의 모든 요소를 제거합니다.</summary>
920      <param name="other">
921        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체에서 제거할 항목의 컬렉션입니다.</param>
922      <exception cref="T:System.ArgumentNullException">
923        <paramref name="other" />가 null인 경우</exception>
924    </member>
925    <member name="M:System.Collections.Generic.HashSet`1.GetEnumerator">
926      <summary>
927        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체에서 반복되는 열거자를 반환합니다.</summary>
928      <returns>
929        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체에 대한 <see cref="T:System.Collections.Generic.HashSet`1.Enumerator" /> 개체입니다.</returns>
930    </member>
931    <member name="M:System.Collections.Generic.HashSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0})">
932      <summary>현재 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체를 수정하여 해당 개체와 지정된 컬렉션에 동시에 있는 요소만 포함합니다.</summary>
933      <param name="other">현재 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체와 비교할 컬렉션입니다.</param>
934      <exception cref="T:System.ArgumentNullException">
935        <paramref name="other" />가 null인 경우</exception>
936    </member>
937    <member name="M:System.Collections.Generic.HashSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
938      <summary>
939        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체가 지정된 컬렉션의 적합한 하위 집합인지 확인합니다.</summary>
940      <returns>
941        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체가 <paramref name="other" />의 적합한 하위 집합이면 true이고, 그렇지 않으면 false입니다.</returns>
942      <param name="other">현재 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체와 비교할 컬렉션입니다.</param>
943      <exception cref="T:System.ArgumentNullException">
944        <paramref name="other" />가 null인 경우</exception>
945    </member>
946    <member name="M:System.Collections.Generic.HashSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
947      <summary>
948        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체가 지정된 컬렉션의 적합한 상위 집합인지 확인합니다.</summary>
949      <returns>
950        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체가 <paramref name="other" />의 적합한 상위 집합이면 true이고, 그렇지 않으면 false입니다.</returns>
951      <param name="other">현재 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체와 비교할 컬렉션입니다. </param>
952      <exception cref="T:System.ArgumentNullException">
953        <paramref name="other" />가 null인 경우</exception>
954    </member>
955    <member name="M:System.Collections.Generic.HashSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
956      <summary>
957        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체가 지정된 컬렉션의 하위 집합인지 확인합니다.</summary>
958      <returns>
959        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체가 <paramref name="other" />의 하위 집합이면 true이고, 그렇지 않으면 false입니다.</returns>
960      <param name="other">현재 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체와 비교할 컬렉션입니다.</param>
961      <exception cref="T:System.ArgumentNullException">
962        <paramref name="other" />가 null인 경우</exception>
963    </member>
964    <member name="M:System.Collections.Generic.HashSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
965      <summary>
966        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체가 지정된 컬렉션의 상위 집합인지 확인합니다.</summary>
967      <returns>
968        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체가 <paramref name="other" />의 상위 집합이면 true이고, 그렇지 않으면 false입니다.</returns>
969      <param name="other">현재 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체와 비교할 컬렉션입니다.</param>
970      <exception cref="T:System.ArgumentNullException">
971        <paramref name="other" />가 null인 경우</exception>
972    </member>
973    <member name="M:System.Collections.Generic.HashSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
974      <summary>현재 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체와 지정된 컬렉션이 공통 요소를 공유하는지 확인합니다.</summary>
975      <returns>
976        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체와 <paramref name="other" />이(가) 요소를 하나 이상 공유하면 true이고, 그렇지 않으면 false입니다.</returns>
977      <param name="other">현재 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체와 비교할 컬렉션입니다.</param>
978      <exception cref="T:System.ArgumentNullException">
979        <paramref name="other" />가 null인 경우</exception>
980    </member>
981    <member name="M:System.Collections.Generic.HashSet`1.Remove(`0)">
982      <summary>
983        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체에서 지정된 요소를 제거합니다.</summary>
984      <returns>요소를 성공적으로 찾아서 제거한 경우 true이고, 그렇지 않으면 false입니다.<paramref name="item" /> 개체에 <see cref="T:System.Collections.Generic.HashSet`1" />이(가) 없으면 이 메서드는 false을(를) 반환합니다.</returns>
985      <param name="item">제거할 요소입니다.</param>
986    </member>
987    <member name="M:System.Collections.Generic.HashSet`1.RemoveWhere(System.Predicate{`0})">
988      <summary>
989        <see cref="T:System.Collections.Generic.HashSet`1" /> 컬렉션에서 지정된 조건자에 정의된 조건과 일치하는 요소를 모두 제거합니다.</summary>
990      <returns>
991        <see cref="T:System.Collections.Generic.HashSet`1" /> 컬렉션에서 제거된 요소의 수입니다.</returns>
992      <param name="match">제거할 요소의 조건을 정의하는 <see cref="T:System.Predicate`1" /> 대리자입니다.</param>
993      <exception cref="T:System.ArgumentNullException">
994        <paramref name="match" />가 null인 경우</exception>
995    </member>
996    <member name="M:System.Collections.Generic.HashSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
997      <summary>
998        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체와 지정된 컬렉션에 같은 요소가 포함되어 있는지 확인합니다.</summary>
999      <returns>
1000        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체가 <paramref name="other" />과(와) 같으면 true이고, 그렇지 않으면 false입니다.</returns>
1001      <param name="other">현재 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체와 비교할 컬렉션입니다.</param>
1002      <exception cref="T:System.ArgumentNullException">
1003        <paramref name="other" />가 null인 경우</exception>
1004    </member>
1005    <member name="M:System.Collections.Generic.HashSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
1006      <summary>현재 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체를 수정하여 해당 개체와 지정된 컬렉션 중 하나에 있는 요소만 포함합니다.</summary>
1007      <param name="other">현재 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체와 비교할 컬렉션입니다.</param>
1008      <exception cref="T:System.ArgumentNullException">
1009        <paramref name="other" />가 null인 경우</exception>
1010    </member>
1011    <member name="M:System.Collections.Generic.HashSet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
1012      <summary>
1013        <see cref="T:System.Collections.Generic.ICollection`1" /> 개체에 항목을 추가합니다.</summary>
1014      <param name="item">
1015        <see cref="T:System.Collections.Generic.ICollection`1" /> 개체에 추가할 개체입니다.</param>
1016      <exception cref="T:System.NotSupportedException">
1017        <see cref="T:System.Collections.Generic.ICollection`1" />이 읽기 전용인 경우</exception>
1018    </member>
1019    <member name="P:System.Collections.Generic.HashSet`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
1020      <summary>컬렉션이 읽기 전용인지를 나타내는 값을 가져옵니다.</summary>
1021      <returns>컬렉션이 읽기 전용이면 true이고, 그렇지 않으면 false입니다.</returns>
1022    </member>
1023    <member name="M:System.Collections.Generic.HashSet`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
1024      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
1025      <returns>컬렉션을 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.Generic.IEnumerator`1" /> 개체입니다.</returns>
1026    </member>
1027    <member name="M:System.Collections.Generic.HashSet`1.System#Collections#IEnumerable#GetEnumerator">
1028      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
1029      <returns>컬렉션을 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.IEnumerator" /> 개체입니다.</returns>
1030    </member>
1031    <member name="M:System.Collections.Generic.HashSet`1.TrimExcess">
1032      <summary>
1033        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체의 용량을 실제로 포함된 요소 수로 설정하고 구현별로 다른 근방 값으로 반올림합니다.</summary>
1034    </member>
1035    <member name="M:System.Collections.Generic.HashSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0})">
1036      <summary>현재 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체를 수정하여 해당 개체와 지정된 컬렉션에 있는 모든 요소를 포함시킵니다.</summary>
1037      <param name="other">현재 <see cref="T:System.Collections.Generic.HashSet`1" /> 개체와 비교할 컬렉션입니다.</param>
1038      <exception cref="T:System.ArgumentNullException">
1039        <paramref name="other" />가 null인 경우</exception>
1040    </member>
1041    <member name="T:System.Collections.Generic.HashSet`1.Enumerator">
1042      <summary>
1043        <see cref="T:System.Collections.Generic.HashSet`1" /> 개체의 요소를 열거합니다.</summary>
1044      <filterpriority>2</filterpriority>
1045    </member>
1046    <member name="P:System.Collections.Generic.HashSet`1.Enumerator.Current">
1047      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
1048      <returns>
1049        <see cref="T:System.Collections.Generic.HashSet`1" /> 컬렉션에서 열거자의 현재 위치에 있는 요소입니다.</returns>
1050    </member>
1051    <member name="M:System.Collections.Generic.HashSet`1.Enumerator.Dispose">
1052      <summary>
1053        <see cref="T:System.Collections.Generic.HashSet`1.Enumerator" /> 개체에 사용되는 리소스를 모두 해제합니다.</summary>
1054    </member>
1055    <member name="M:System.Collections.Generic.HashSet`1.Enumerator.MoveNext">
1056      <summary>열거자를 <see cref="T:System.Collections.Generic.HashSet`1" /> 컬렉션의 다음 요소로 이동합니다.</summary>
1057      <returns>열거자가 다음 요소로 이동한 경우 true가 반환되고, 컬렉션의 끝을 지난 경우 false가 반환됩니다.</returns>
1058      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
1059    </member>
1060    <member name="P:System.Collections.Generic.HashSet`1.Enumerator.System#Collections#IEnumerator#Current">
1061      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
1062      <returns>컬렉션에서 열거자의 현재 위치에 있는 요소인 <see cref="T:System.Object" />입니다.</returns>
1063      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
1064    </member>
1065    <member name="M:System.Collections.Generic.HashSet`1.Enumerator.System#Collections#IEnumerator#Reset">
1066      <summary>컬렉션의 첫 번째 요소 앞의 초기 위치에 열거자를 설정합니다.</summary>
1067      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
1068    </member>
1069    <member name="T:System.Collections.Generic.LinkedList`1">
1070      <summary>이중 연결 목록을 나타냅니다.</summary>
1071      <typeparam name="T">링크된 목록의 요소 형식을 지정합니다.</typeparam>
1072      <filterpriority>1</filterpriority>
1073    </member>
1074    <member name="M:System.Collections.Generic.LinkedList`1.#ctor">
1075      <summary>비어 있는 <see cref="T:System.Collections.Generic.LinkedList`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
1076    </member>
1077    <member name="M:System.Collections.Generic.LinkedList`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
1078      <summary>지정한 <see cref="T:System.Collections.IEnumerable" />에서 복사된 요소가 포함되어 있고 복사된 요소의 수를 수용할 수 있는 충분한 용량을 가지는 <see cref="T:System.Collections.Generic.LinkedList`1" /> 클래스의 새 인스턴스를 초기화합니다. </summary>
1079      <param name="collection">요소가 새 <see cref="T:System.Collections.Generic.LinkedList`1" />에 복사되는 <see cref="T:System.Collections.IEnumerable" />입니다.</param>
1080      <exception cref="T:System.ArgumentNullException">
1081        <paramref name="collection" />가 null입니다.</exception>
1082    </member>
1083    <member name="M:System.Collections.Generic.LinkedList`1.AddAfter(System.Collections.Generic.LinkedListNode{`0},System.Collections.Generic.LinkedListNode{`0})">
1084      <summary>
1085        <see cref="T:System.Collections.Generic.LinkedList`1" />의 지정한 기존 노드 다음에 지정한 새 노드를 추가합니다.</summary>
1086      <param name="node">
1087        <paramref name="newNode" />를 삽입할 위치 앞에 있는 <see cref="T:System.Collections.Generic.LinkedListNode`1" />입니다.</param>
1088      <param name="newNode">
1089        <see cref="T:System.Collections.Generic.LinkedList`1" />에 추가할 새 <see cref="T:System.Collections.Generic.LinkedListNode`1" />입니다.</param>
1090      <exception cref="T:System.ArgumentNullException">
1091        <paramref name="node" />가 null입니다.또는<paramref name="newNode" />가 null입니다.</exception>
1092      <exception cref="T:System.InvalidOperationException">
1093        <paramref name="node" />가 <see cref="T:System.Collections.Generic.LinkedList`1" />에 없는 경우또는<paramref name="newNode" />가 다른 <see cref="T:System.Collections.Generic.LinkedList`1" />에 속하는 경우</exception>
1094    </member>
1095    <member name="M:System.Collections.Generic.LinkedList`1.AddAfter(System.Collections.Generic.LinkedListNode{`0},`0)">
1096      <summary>
1097        <see cref="T:System.Collections.Generic.LinkedList`1" />의 지정한 기존 노드 다음에 지정한 값이 포함된 새 노드를 추가합니다.</summary>
1098      <returns>
1099        <paramref name="value" />가 포함된 새 <see cref="T:System.Collections.Generic.LinkedListNode`1" />입니다.</returns>
1100      <param name="node">
1101        <paramref name="value" />가 포함된 새 <see cref="T:System.Collections.Generic.LinkedListNode`1" />을 삽입할 위치 앞에 있는 <see cref="T:System.Collections.Generic.LinkedListNode`1" />입니다.</param>
1102      <param name="value">
1103        <see cref="T:System.Collections.Generic.LinkedList`1" />에 추가할 값입니다.</param>
1104      <exception cref="T:System.ArgumentNullException">
1105        <paramref name="node" />가 null입니다.</exception>
1106      <exception cref="T:System.InvalidOperationException">
1107        <paramref name="node" />가 <see cref="T:System.Collections.Generic.LinkedList`1" />에 없는 경우</exception>
1108    </member>
1109    <member name="M:System.Collections.Generic.LinkedList`1.AddBefore(System.Collections.Generic.LinkedListNode{`0},System.Collections.Generic.LinkedListNode{`0})">
1110      <summary>
1111        <see cref="T:System.Collections.Generic.LinkedList`1" />의 지정한 기존 노드 앞에 지정한 새 노드를 추가합니다.</summary>
1112      <param name="node">
1113        <paramref name="newNode" />를 삽입할 위치 뒤에 있는 <see cref="T:System.Collections.Generic.LinkedListNode`1" />입니다.</param>
1114      <param name="newNode">
1115        <see cref="T:System.Collections.Generic.LinkedList`1" />에 추가할 새 <see cref="T:System.Collections.Generic.LinkedListNode`1" />입니다.</param>
1116      <exception cref="T:System.ArgumentNullException">
1117        <paramref name="node" />가 null입니다.또는<paramref name="newNode" />가 null입니다.</exception>
1118      <exception cref="T:System.InvalidOperationException">
1119        <paramref name="node" />가 <see cref="T:System.Collections.Generic.LinkedList`1" />에 없는 경우또는<paramref name="newNode" />가 다른 <see cref="T:System.Collections.Generic.LinkedList`1" />에 속하는 경우</exception>
1120    </member>
1121    <member name="M:System.Collections.Generic.LinkedList`1.AddBefore(System.Collections.Generic.LinkedListNode{`0},`0)">
1122      <summary>
1123        <see cref="T:System.Collections.Generic.LinkedList`1" />의 지정한 기존 노드 앞에 지정한 값이 포함된 새 노드를 추가합니다.</summary>
1124      <returns>
1125        <paramref name="value" />가 포함된 새 <see cref="T:System.Collections.Generic.LinkedListNode`1" />입니다.</returns>
1126      <param name="node">
1127        <paramref name="value" />가 포함된 새 <see cref="T:System.Collections.Generic.LinkedListNode`1" />을 삽입할 위치 뒤에 있는 <see cref="T:System.Collections.Generic.LinkedListNode`1" />입니다.</param>
1128      <param name="value">
1129        <see cref="T:System.Collections.Generic.LinkedList`1" />에 추가할 값입니다.</param>
1130      <exception cref="T:System.ArgumentNullException">
1131        <paramref name="node" />가 null입니다.</exception>
1132      <exception cref="T:System.InvalidOperationException">
1133        <paramref name="node" />가 <see cref="T:System.Collections.Generic.LinkedList`1" />에 없는 경우</exception>
1134    </member>
1135    <member name="M:System.Collections.Generic.LinkedList`1.AddFirst(System.Collections.Generic.LinkedListNode{`0})">
1136      <summary>
1137        <see cref="T:System.Collections.Generic.LinkedList`1" />의 시작 위치에 지정한 새 노드를 추가합니다.</summary>
1138      <param name="node">
1139        <see cref="T:System.Collections.Generic.LinkedList`1" />의 시작 위치에 추가할 새 <see cref="T:System.Collections.Generic.LinkedListNode`1" />입니다.</param>
1140      <exception cref="T:System.ArgumentNullException">
1141        <paramref name="node" />가 null입니다.</exception>
1142      <exception cref="T:System.InvalidOperationException">
1143        <paramref name="node" />가 다른 <see cref="T:System.Collections.Generic.LinkedList`1" />에 속하는 경우</exception>
1144    </member>
1145    <member name="M:System.Collections.Generic.LinkedList`1.AddFirst(`0)">
1146      <summary>
1147        <see cref="T:System.Collections.Generic.LinkedList`1" />의 시작 위치에 지정한 값이 포함된 새 노드를 추가합니다.</summary>
1148      <returns>
1149        <paramref name="value" />가 포함된 새 <see cref="T:System.Collections.Generic.LinkedListNode`1" />입니다.</returns>
1150      <param name="value">
1151        <see cref="T:System.Collections.Generic.LinkedList`1" />의 시작 위치에 추가할 값입니다.</param>
1152    </member>
1153    <member name="M:System.Collections.Generic.LinkedList`1.AddLast(System.Collections.Generic.LinkedListNode{`0})">
1154      <summary>
1155        <see cref="T:System.Collections.Generic.LinkedList`1" />의 끝에 지정한 새 노드를 추가합니다.</summary>
1156      <param name="node">
1157        <see cref="T:System.Collections.Generic.LinkedList`1" />의 끝에 추가할 새 <see cref="T:System.Collections.Generic.LinkedListNode`1" />입니다.</param>
1158      <exception cref="T:System.ArgumentNullException">
1159        <paramref name="node" />가 null입니다.</exception>
1160      <exception cref="T:System.InvalidOperationException">
1161        <paramref name="node" />가 다른 <see cref="T:System.Collections.Generic.LinkedList`1" />에 속하는 경우</exception>
1162    </member>
1163    <member name="M:System.Collections.Generic.LinkedList`1.AddLast(`0)">
1164      <summary>
1165        <see cref="T:System.Collections.Generic.LinkedList`1" />의 끝에 지정한 값이 포함된 새 노드를 추가합니다.</summary>
1166      <returns>
1167        <paramref name="value" />가 포함된 새 <see cref="T:System.Collections.Generic.LinkedListNode`1" />입니다.</returns>
1168      <param name="value">
1169        <see cref="T:System.Collections.Generic.LinkedList`1" />의 끝에 추가할 값입니다.</param>
1170    </member>
1171    <member name="M:System.Collections.Generic.LinkedList`1.Clear">
1172      <summary>
1173        <see cref="T:System.Collections.Generic.LinkedList`1" />에서 노드를 모두 제거합니다.</summary>
1174    </member>
1175    <member name="M:System.Collections.Generic.LinkedList`1.Contains(`0)">
1176      <summary>값이 <see cref="T:System.Collections.Generic.LinkedList`1" />에 있는지 여부를 확인합니다.</summary>
1177      <returns>
1178        <paramref name="value" />가 <see cref="T:System.Collections.Generic.LinkedList`1" />에 있으면 true이고, 그렇지 않으면 false입니다.</returns>
1179      <param name="value">
1180        <see cref="T:System.Collections.Generic.LinkedList`1" />에서 찾을 수 있는 값입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
1181    </member>
1182    <member name="M:System.Collections.Generic.LinkedList`1.CopyTo(`0[],System.Int32)">
1183      <summary>대상 배열의 지정된 인덱스에서 시작하여 전체 <see cref="T:System.Collections.Generic.LinkedList`1" />을 호환되는 1차원 <see cref="T:System.Array" />에 복사합니다.</summary>
1184      <param name="array">
1185        <see cref="T:System.Collections.Generic.LinkedList`1" />에서 복사한 요소의 대상인 1차원 <see cref="T:System.Array" />입니다.<see cref="T:System.Array" />에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
1186      <param name="index">
1187        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
1188      <exception cref="T:System.ArgumentNullException">
1189        <paramref name="array" />가 null입니다.</exception>
1190      <exception cref="T:System.ArgumentOutOfRangeException">
1191        <paramref name="index" />가 0보다 작은 경우</exception>
1192      <exception cref="T:System.ArgumentException">소스 <see cref="T:System.Collections.Generic.LinkedList`1" />의 요소 수가 <paramref name="index" />에서 대상 <paramref name="array" /> 끝까지 사용 가능한 공간보다 큰 경우</exception>
1193    </member>
1194    <member name="P:System.Collections.Generic.LinkedList`1.Count">
1195      <summary>
1196        <see cref="T:System.Collections.Generic.LinkedList`1" />에 실제로 포함된 노드의 수를 가져옵니다.</summary>
1197      <returns>
1198        <see cref="T:System.Collections.Generic.LinkedList`1" />에 실제로 포함된 노드의 수입니다.</returns>
1199    </member>
1200    <member name="M:System.Collections.Generic.LinkedList`1.Find(`0)">
1201      <summary>지정한 값이 포함된 첫 번째 노드를 찾습니다.</summary>
1202      <returns>지정한 값이 있으면 해당 값이 포함된 첫 번째 <see cref="T:System.Collections.Generic.LinkedListNode`1" />이고, 그렇지 않으면 null입니다.</returns>
1203      <param name="value">
1204        <see cref="T:System.Collections.Generic.LinkedList`1" />에서 찾을 수 있는 값입니다.</param>
1205    </member>
1206    <member name="M:System.Collections.Generic.LinkedList`1.FindLast(`0)">
1207      <summary>지정한 값이 포함된 마지막 노드를 찾습니다.</summary>
1208      <returns>지정한 값이 있으면 해당 값이 포함된 마지막 <see cref="T:System.Collections.Generic.LinkedListNode`1" />이고, 그렇지 않으면 null입니다.</returns>
1209      <param name="value">
1210        <see cref="T:System.Collections.Generic.LinkedList`1" />에서 찾을 수 있는 값입니다.</param>
1211    </member>
1212    <member name="P:System.Collections.Generic.LinkedList`1.First">
1213      <summary>
1214        <see cref="T:System.Collections.Generic.LinkedList`1" />의 첫 번째 노드를 가져옵니다.</summary>
1215      <returns>
1216        <see cref="T:System.Collections.Generic.LinkedList`1" />의 첫 번째 <see cref="T:System.Collections.Generic.LinkedListNode`1" />입니다.</returns>
1217    </member>
1218    <member name="M:System.Collections.Generic.LinkedList`1.GetEnumerator">
1219      <summary>
1220        <see cref="T:System.Collections.Generic.LinkedList`1" />을 반복하는 열거자를 반환합니다.</summary>
1221      <returns>
1222        <see cref="T:System.Collections.Generic.LinkedList`1" />에 대한 <see cref="T:System.Collections.Generic.LinkedList`1.Enumerator" />입니다.</returns>
1223    </member>
1224    <member name="P:System.Collections.Generic.LinkedList`1.Last">
1225      <summary>
1226        <see cref="T:System.Collections.Generic.LinkedList`1" />의 마지막 노드를 가져옵니다.</summary>
1227      <returns>
1228        <see cref="T:System.Collections.Generic.LinkedList`1" />의 마지막 <see cref="T:System.Collections.Generic.LinkedListNode`1" />입니다.</returns>
1229    </member>
1230    <member name="M:System.Collections.Generic.LinkedList`1.Remove(System.Collections.Generic.LinkedListNode{`0})">
1231      <summary>
1232        <see cref="T:System.Collections.Generic.LinkedList`1" />에서 지정된 노드를 제거합니다.</summary>
1233      <param name="node">
1234        <see cref="T:System.Collections.Generic.LinkedList`1" />에서 제거할 <see cref="T:System.Collections.Generic.LinkedListNode`1" />입니다.</param>
1235      <exception cref="T:System.ArgumentNullException">
1236        <paramref name="node" />가 null입니다.</exception>
1237      <exception cref="T:System.InvalidOperationException">
1238        <paramref name="node" />가 <see cref="T:System.Collections.Generic.LinkedList`1" />에 없는 경우</exception>
1239    </member>
1240    <member name="M:System.Collections.Generic.LinkedList`1.Remove(`0)">
1241      <summary>
1242        <see cref="T:System.Collections.Generic.LinkedList`1" />에서 맨 처음 발견되는 지정된 값을 제거합니다.</summary>
1243      <returns>
1244        <paramref name="value" />가 포함된 요소가 성공적으로 제거되면 true이고, 그렇지 않으면 false입니다.  이 메서드는 <paramref name="value" />가 원래 <see cref="T:System.Collections.Generic.LinkedList`1" />에 없는 경우에도 false를 반환합니다.</returns>
1245      <param name="value">
1246        <see cref="T:System.Collections.Generic.LinkedList`1" />에서 제거할 값입니다.</param>
1247    </member>
1248    <member name="M:System.Collections.Generic.LinkedList`1.RemoveFirst">
1249      <summary>
1250        <see cref="T:System.Collections.Generic.LinkedList`1" />의 시작 위치에서 노드를 제거합니다.</summary>
1251      <exception cref="T:System.InvalidOperationException">
1252        <see cref="T:System.Collections.Generic.LinkedList`1" />이 비어 있는 경우</exception>
1253    </member>
1254    <member name="M:System.Collections.Generic.LinkedList`1.RemoveLast">
1255      <summary>
1256        <see cref="T:System.Collections.Generic.LinkedList`1" />의 끝에서 노드를 제거합니다.</summary>
1257      <exception cref="T:System.InvalidOperationException">
1258        <see cref="T:System.Collections.Generic.LinkedList`1" />이 비어 있는 경우</exception>
1259    </member>
1260    <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#Generic#ICollection{T}#Add(`0)">
1261      <summary>
1262        <see cref="T:System.Collections.Generic.ICollection`1" />의 끝에 항목을 추가합니다.</summary>
1263      <param name="value">
1264        <see cref="T:System.Collections.Generic.ICollection`1" />의 끝에 추가할 값입니다.</param>
1265    </member>
1266    <member name="P:System.Collections.Generic.LinkedList`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
1267      <summary>
1268        <see cref="T:System.Collections.Generic.ICollection`1" />이 읽기 전용인지 여부를 나타내는 값을 가져옵니다.</summary>
1269      <returns>
1270        <see cref="T:System.Collections.Generic.ICollection`1" />이 읽기 전용이면 true이고, 그렇지 않으면 false입니다.  <see cref="T:System.Collections.Generic.LinkedList`1" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
1271    </member>
1272    <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
1273      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
1274      <returns>컬렉션에서 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.Generic.IEnumerator`1" />입니다.</returns>
1275    </member>
1276    <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
1277      <summary>특정 <see cref="T:System.Array" /> 인덱스에서 시작하여 <see cref="T:System.Collections.ICollection" />의 요소를 <see cref="T:System.Array" />에 복사합니다.</summary>
1278      <param name="array">
1279        <see cref="T:System.Collections.ICollection" />에서 복사한 요소의 대상인 일차원 <see cref="T:System.Array" />입니다.<see cref="T:System.Array" />에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
1280      <param name="index">
1281        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
1282      <exception cref="T:System.ArgumentNullException">
1283        <paramref name="array" />가 null입니다.</exception>
1284      <exception cref="T:System.ArgumentOutOfRangeException">
1285        <paramref name="index" />가 0보다 작은 경우</exception>
1286      <exception cref="T:System.ArgumentException">
1287        <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>
1288    </member>
1289    <member name="P:System.Collections.Generic.LinkedList`1.System#Collections#ICollection#IsSynchronized">
1290      <summary>
1291        <see cref="T:System.Collections.ICollection" />에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되는지 여부를 나타내는 값을 가져옵니다.</summary>
1292      <returns>
1293        <see cref="T:System.Collections.ICollection" />에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되면 true이고, 그렇지 않으면 false입니다.  <see cref="T:System.Collections.Generic.LinkedList`1" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
1294    </member>
1295    <member name="P:System.Collections.Generic.LinkedList`1.System#Collections#ICollection#SyncRoot">
1296      <summary>
1297        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다.</summary>
1298      <returns>
1299        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체입니다.  <see cref="T:System.Collections.Generic.LinkedList`1" />의 기본 구현에서 이 속성은 언제나 현재 인스턴스를 반환합니다.</returns>
1300    </member>
1301    <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#IEnumerable#GetEnumerator">
1302      <summary>링크된 목록을 컬렉션으로 반복하는 열거자를 반환합니다.</summary>
1303      <returns>링크된 목록을 컬렉션으로 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.IEnumerator" />입니다.</returns>
1304    </member>
1305    <member name="T:System.Collections.Generic.LinkedList`1.Enumerator">
1306      <summary>
1307        <see cref="T:System.Collections.Generic.LinkedList`1" />의 요소를 열거합니다.</summary>
1308    </member>
1309    <member name="P:System.Collections.Generic.LinkedList`1.Enumerator.Current">
1310      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
1311      <returns>
1312        <see cref="T:System.Collections.Generic.LinkedList`1" />에서 열거자의 현재 위치에 있는 요소입니다.</returns>
1313    </member>
1314    <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.Dispose">
1315      <summary>
1316        <see cref="T:System.Collections.Generic.LinkedList`1.Enumerator" />에서 사용하는 모든 리소스를 해제합니다.</summary>
1317    </member>
1318    <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.MoveNext">
1319      <summary>열거자를 <see cref="T:System.Collections.Generic.LinkedList`1" />의 다음 요소로 이동합니다.</summary>
1320      <returns>열거자가 다음 요소로 이동한 경우 true가 반환되고, 컬렉션의 끝을 지난 경우 false가 반환됩니다.</returns>
1321      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
1322    </member>
1323    <member name="P:System.Collections.Generic.LinkedList`1.Enumerator.System#Collections#IEnumerator#Current">
1324      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
1325      <returns>컬렉션에서 열거자의 현재 위치에 있는 요소입니다.</returns>
1326      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
1327    </member>
1328    <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.System#Collections#IEnumerator#Reset">
1329      <summary>컬렉션의 첫 번째 요소 앞의 초기 위치에 열거자를 설정합니다.이 클래스는 상속될 수 없습니다.</summary>
1330      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
1331    </member>
1332    <member name="T:System.Collections.Generic.LinkedListNode`1">
1333      <summary>
1334        <see cref="T:System.Collections.Generic.LinkedList`1" />의 노드를 나타냅니다.이 클래스는 상속될 수 없습니다.</summary>
1335      <typeparam name="T">링크된 목록의 요소 형식을 지정합니다.</typeparam>
1336      <filterpriority>1</filterpriority>
1337    </member>
1338    <member name="M:System.Collections.Generic.LinkedListNode`1.#ctor(`0)">
1339      <summary>지정한 값을 포함하는 <see cref="T:System.Collections.Generic.LinkedListNode`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
1340      <param name="value">
1341        <see cref="T:System.Collections.Generic.LinkedListNode`1" />에 포함할 값입니다.</param>
1342    </member>
1343    <member name="P:System.Collections.Generic.LinkedListNode`1.List">
1344      <summary>
1345        <see cref="T:System.Collections.Generic.LinkedListNode`1" />이 속하는 <see cref="T:System.Collections.Generic.LinkedList`1" />을 가져옵니다.</summary>
1346      <returns>
1347        <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>
1348    </member>
1349    <member name="P:System.Collections.Generic.LinkedListNode`1.Next">
1350      <summary>
1351        <see cref="T:System.Collections.Generic.LinkedList`1" />의 다음 노드를 가져옵니다.</summary>
1352      <returns>
1353        <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>
1354    </member>
1355    <member name="P:System.Collections.Generic.LinkedListNode`1.Previous">
1356      <summary>
1357        <see cref="T:System.Collections.Generic.LinkedList`1" />의 이전 노드를 가져옵니다.</summary>
1358      <returns>
1359        <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>
1360    </member>
1361    <member name="P:System.Collections.Generic.LinkedListNode`1.Value">
1362      <summary>노드에 포함된 값을 가져옵니다.</summary>
1363      <returns>노드에 포함된 값입니다.</returns>
1364    </member>
1365    <member name="T:System.Collections.Generic.List`1">
1366      <summary>인덱스로 액세스할 수 있는 강력한 형식의 개체 목록을 나타냅니다.목록의 검색, 정렬 및 조작에 사용할 수 있는 메서드를 제공합니다.이 형식에 대 한.NET Framework 소스 코드를 찾아보려면 참조는 참조 원본.</summary>
1367      <typeparam name="T">목록에 있는 요소의 형식입니다.</typeparam>
1368      <filterpriority>1</filterpriority>
1369    </member>
1370    <member name="M:System.Collections.Generic.List`1.#ctor">
1371      <summary>비어 있는 상태에서 기본 초기 용량을 가지는 <see cref="T:System.Collections.Generic.List`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
1372    </member>
1373    <member name="M:System.Collections.Generic.List`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
1374      <summary>지정된 컬렉션에서 복사한 요소를 포함하고 복사한 요소를 모두 수용할 수 있을 정도의 용량을 가진 <see cref="T:System.Collections.Generic.List`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
1375      <param name="collection">요소가 새 목록에 복사되는 컬렉션입니다.</param>
1376      <exception cref="T:System.ArgumentNullException">
1377        <paramref name="collection" />가 null인 경우</exception>
1378    </member>
1379    <member name="M:System.Collections.Generic.List`1.#ctor(System.Int32)">
1380      <summary>비어 있는 상태에서 지정한 초기 용량을 가지는 <see cref="T:System.Collections.Generic.List`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
1381      <param name="capacity">새 목록에 처음부터 저장할 수 있는 요소의 수입니다.</param>
1382      <exception cref="T:System.ArgumentOutOfRangeException">
1383        <paramref name="capacity" />가 0보다 작습니다. </exception>
1384    </member>
1385    <member name="M:System.Collections.Generic.List`1.Add(`0)">
1386      <summary>개체를 <see cref="T:System.Collections.Generic.List`1" />의 끝 부분에 추가합니다.</summary>
1387      <param name="item">
1388        <see cref="T:System.Collections.Generic.List`1" />의 끝에 추가할 개체입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
1389    </member>
1390    <member name="M:System.Collections.Generic.List`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
1391      <summary>지정된 컬렉션의 요소를 <see cref="T:System.Collections.Generic.List`1" />의 끝에 추가합니다.</summary>
1392      <param name="collection">요소가 <see cref="T:System.Collections.Generic.List`1" />의 끝에 추가되어야 하는 컬렉션입니다.컬렉션 자체가 null일 수는 없지만 <paramref name="T" /> 형식이 참조 형식인 경우 null인 요소를 포함할 수 있습니다.</param>
1393      <exception cref="T:System.ArgumentNullException">
1394        <paramref name="collection" />가 null인 경우</exception>
1395    </member>
1396    <member name="M:System.Collections.Generic.List`1.AsReadOnly">
1397      <summary>현재 컬렉션에 대한 읽기 전용 <see cref="T:System.Collections.Generic.IList`1" /> 래퍼를 반환합니다.</summary>
1398      <returns>현재 <see cref="T:System.Collections.Generic.List`1" />에 대한 읽기 전용 래퍼 역할을 하는 <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />입니다.</returns>
1399    </member>
1400    <member name="M:System.Collections.Generic.List`1.BinarySearch(System.Int32,System.Int32,`0,System.Collections.Generic.IComparer{`0})">
1401      <summary>지정된 비교자를 사용하여 정렬된 <see cref="T:System.Collections.Generic.List`1" />의 요소 범위에서 요소를 검색하고 요소의 인덱스(0부터 시작)를 반환합니다.</summary>
1402      <returns>
1403        <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>
1404      <param name="index">검색할 범위의 0부터 시작하는 인덱스입니다.</param>
1405      <param name="count">검색할 범위의 길이입니다.</param>
1406      <param name="item">찾을 개체입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
1407      <param name="comparer">요소를 비교할 때 사용할 <see cref="T:System.Collections.Generic.IComparer`1" /> 구현이거나, 기본 비교자 <see cref="P:System.Collections.Generic.Comparer`1.Default" />를 사용하려면 null입니다.</param>
1408      <exception cref="T:System.ArgumentOutOfRangeException">
1409        <paramref name="index" />가 0보다 작습니다.또는<paramref name="count" />가 0보다 작습니다. </exception>
1410      <exception cref="T:System.ArgumentException">
1411        <paramref name="index" /> 및 <paramref name="count" />가 <see cref="T:System.Collections.Generic.List`1" />의 올바른 범위를 나타내지 않는 경우</exception>
1412      <exception cref="T:System.InvalidOperationException">
1413        <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>
1414    </member>
1415    <member name="M:System.Collections.Generic.List`1.BinarySearch(`0)">
1416      <summary>기본 비교자를 사용하여 정렬된 전체 <see cref="T:System.Collections.Generic.List`1" />에서 요소를 검색하고 요소의 인덱스(0부터 시작)를 반환합니다.</summary>
1417      <returns>
1418        <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>
1419      <param name="item">찾을 개체입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
1420      <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>
1421    </member>
1422    <member name="M:System.Collections.Generic.List`1.BinarySearch(`0,System.Collections.Generic.IComparer{`0})">
1423      <summary>지정된 비교자를 사용하여 정렬된 전체 <see cref="T:System.Collections.Generic.List`1" />에서 요소를 검색하고 요소의 인덱스(0부터 시작)를 반환합니다.</summary>
1424      <returns>
1425        <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>
1426      <param name="item">찾을 개체입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
1427      <param name="comparer">요소를 비교할 때 사용하는 <see cref="T:System.Collections.Generic.IComparer`1" /> 구현입니다.또는기본 비교자 <see cref="P:System.Collections.Generic.Comparer`1.Default" />를 사용하려면 null입니다.</param>
1428      <exception cref="T:System.InvalidOperationException">
1429        <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>
1430    </member>
1431    <member name="P:System.Collections.Generic.List`1.Capacity">
1432      <summary>크기를 조정하지 않고 내부 데이터 구조가 보유할 수 있는 전체 요소 수를 가져오거나 설정합니다.</summary>
1433      <returns>크기를 조정하지 않고 <see cref="T:System.Collections.Generic.List`1" />에 포함될 수 있는 요소 수입니다.</returns>
1434      <exception cref="T:System.ArgumentOutOfRangeException">
1435        <see cref="P:System.Collections.Generic.List`1.Capacity" />가 <see cref="P:System.Collections.Generic.List`1.Count" />보다 작은 값으로 설정된 경우 </exception>
1436      <exception cref="T:System.OutOfMemoryException">시스템에 사용 가능한 메모리가 부족합니다.</exception>
1437    </member>
1438    <member name="M:System.Collections.Generic.List`1.Clear">
1439      <summary>
1440        <see cref="T:System.Collections.Generic.List`1" />에서 요소를 모두 제거합니다.</summary>
1441    </member>
1442    <member name="M:System.Collections.Generic.List`1.Contains(`0)">
1443      <summary>요소가 <see cref="T:System.Collections.Generic.List`1" />에 있는지 여부를 확인합니다.</summary>
1444      <returns>true if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.List`1" />; otherwise, false.</returns>
1445      <param name="item">
1446        <see cref="T:System.Collections.Generic.List`1" />에서 찾을 개체입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
1447    </member>
1448    <member name="M:System.Collections.Generic.List`1.CopyTo(System.Int32,`0[],System.Int32,System.Int32)">
1449      <summary>대상 배열의 지정된 인덱스에서 시작하여 <see cref="T:System.Collections.Generic.List`1" />에 있는 일련의 요소를 호환되는 1차원 배열에 복사합니다.</summary>
1450      <param name="index">소스 <see cref="T:System.Collections.Generic.List`1" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
1451      <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>
1452      <param name="arrayIndex">
1453        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
1454      <param name="count">복사할 요소의 수입니다.</param>
1455      <exception cref="T:System.ArgumentNullException">
1456        <paramref name="array" />가 null인 경우 </exception>
1457      <exception cref="T:System.ArgumentOutOfRangeException">
1458        <paramref name="index" />가 0보다 작습니다.또는<paramref name="arrayIndex" />가 0보다 작습니다.또는<paramref name="count" />가 0보다 작습니다. </exception>
1459      <exception cref="T:System.ArgumentException">
1460        <paramref name="index" />가 소스 <see cref="T:System.Collections.Generic.List`1" />의 <see cref="P:System.Collections.Generic.List`1.Count" />보다 크거나 같은 경우또는<paramref name="index" />부터 소스 <see cref="T:System.Collections.Generic.List`1" /> 끝까지의 요소 수가 <paramref name="arrayIndex" />부터 대상 <paramref name="array" /> 끝까지의 사용 가능한 공간보다 큰 경우 </exception>
1461    </member>
1462    <member name="M:System.Collections.Generic.List`1.CopyTo(`0[])">
1463      <summary>대상 배열의 처음부터 시작하여 전체 <see cref="T:System.Collections.Generic.List`1" />을 호환되는 1차원 배열에 복사합니다.</summary>
1464      <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>
1465      <exception cref="T:System.ArgumentNullException">
1466        <paramref name="array" />가 null인 경우</exception>
1467      <exception cref="T:System.ArgumentException">소스 <see cref="T:System.Collections.Generic.List`1" />의 요소의 수가 대상 <paramref name="array" />가 포함할 수 있는 요소의 수보다 큰 경우</exception>
1468    </member>
1469    <member name="M:System.Collections.Generic.List`1.CopyTo(`0[],System.Int32)">
1470      <summary>대상 배열의 지정된 인덱스에서 시작하여 전체 <see cref="T:System.Collections.Generic.List`1" />을 호환되는 1차원 배열에 복사합니다.</summary>
1471      <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>
1472      <param name="arrayIndex">
1473        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
1474      <exception cref="T:System.ArgumentNullException">
1475        <paramref name="array" />가 null인 경우</exception>
1476      <exception cref="T:System.ArgumentOutOfRangeException">
1477        <paramref name="arrayIndex" />가 0보다 작습니다.</exception>
1478      <exception cref="T:System.ArgumentException">소스 <see cref="T:System.Collections.Generic.List`1" />의 요소 수가 <paramref name="arrayIndex" />에서 대상 <paramref name="array" /> 끝까지 사용 가능한 공간보다 큰 경우</exception>
1479    </member>
1480    <member name="P:System.Collections.Generic.List`1.Count">
1481      <summary>
1482        <see cref="T:System.Collections.Generic.List`1" />에 포함된 요소 수를 가져옵니다.</summary>
1483      <returns>
1484        <see cref="T:System.Collections.Generic.List`1" />에 포함된 요소 수입니다.</returns>
1485    </member>
1486    <member name="M:System.Collections.Generic.List`1.Exists(System.Predicate{`0})">
1487      <summary>지정된 조건자에 정의된 조건과 일치하는 요소가 <see cref="T:System.Collections.Generic.List`1" />에 포함되어 있는지 여부를 확인합니다.</summary>
1488      <returns>지정된 조건자에 정의된 조건과 일치하는 요소가 하나 이상 <see cref="T:System.Collections.Generic.List`1" />에 포함되어 있으면 true이고, 그렇지 않으면 false입니다.</returns>
1489      <param name="match">검색할 요소의 조건을 정의하는 <see cref="T:System.Predicate`1" /> 대리자입니다.</param>
1490      <exception cref="T:System.ArgumentNullException">
1491        <paramref name="match" />가 null인 경우</exception>
1492    </member>
1493    <member name="M:System.Collections.Generic.List`1.Find(System.Predicate{`0})">
1494      <summary>지정된 조건자에 정의된 조건과 일치하는 요소를 검색하고 전체 <see cref="T:System.Collections.Generic.List`1" />에서 처음으로 검색한 요소를 반환합니다.</summary>
1495      <returns>지정한 조건자에 정의된 조건과 일치하는 요소가 있으면 일치하는 요소 중 첫 번째 요소이고, 그렇지 않으면 <paramref name="T" /> 형식의 기본값입니다.</returns>
1496      <param name="match">검색할 요소의 조건을 정의하는 <see cref="T:System.Predicate`1" /> 대리자입니다.</param>
1497      <exception cref="T:System.ArgumentNullException">
1498        <paramref name="match" />가 null인 경우</exception>
1499    </member>
1500    <member name="M:System.Collections.Generic.List`1.FindAll(System.Predicate{`0})">
1501      <summary>지정한 조건자에 정의된 조건과 일치하는 모든 요소를 검색합니다.</summary>
1502      <returns>지정된 조건자에 정의된 조건과 일치하는 요소가 있으면 해당 요소를 모두 포함하는 <see cref="T:System.Collections.Generic.List`1" />이고, 그렇지 않으면 빈 <see cref="T:System.Collections.Generic.List`1" />입니다.</returns>
1503      <param name="match">검색할 요소의 조건을 정의하는 <see cref="T:System.Predicate`1" /> 대리자입니다.</param>
1504      <exception cref="T:System.ArgumentNullException">
1505        <paramref name="match" />가 null인 경우</exception>
1506    </member>
1507    <member name="M:System.Collections.Generic.List`1.FindIndex(System.Int32,System.Int32,System.Predicate{`0})">
1508      <summary>지정한 조건자에 정의된 조건과 일치하는 요소를 검색하여 지정한 인덱스부터 시작하여 지정한 수의 요소를 포함하는 <see cref="T:System.Collections.Generic.List`1" />의 요소 범위에서 일치하는 요소 중 첫 번째 요소의 인덱스(0부터 시작)를 반환합니다.</summary>
1509      <returns>
1510        <paramref name="match" />에 정의된 조건과 일치하는 요소가 있으면 일치하는 요소 중 첫 번째 요소의 인덱스(0부터 시작)이고, 그렇지 않으면 -1입니다.</returns>
1511      <param name="startIndex">검색의 0부터 시작하는 인덱스입니다.</param>
1512      <param name="count">검색할 섹션에 있는 요소 수입니다.</param>
1513      <param name="match">검색할 요소의 조건을 정의하는 <see cref="T:System.Predicate`1" /> 대리자입니다.</param>
1514      <exception cref="T:System.ArgumentNullException">
1515        <paramref name="match" />가 null인 경우</exception>
1516      <exception cref="T:System.ArgumentOutOfRangeException">
1517        <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>
1518    </member>
1519    <member name="M:System.Collections.Generic.List`1.FindIndex(System.Int32,System.Predicate{`0})">
1520      <summary>지정한 조건자에 정의된 조건과 일치하는 요소를 검색하여 지정한 인덱스에서 마지막 요소로 확장하는 <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>지정한 조건자에 정의된 조건과 일치하는 요소를 검색하여 전체 <see cref="T:System.Collections.Generic.List`1" />에서 일치하는 요소 중 첫 번째 요소의 인덱스(0부터 시작)를 반환합니다.</summary>
1532      <returns>
1533        <paramref name="match" />에 정의된 조건과 일치하는 요소가 있으면 일치하는 요소 중 첫 번째 요소의 인덱스(0부터 시작)이고, 그렇지 않으면 -1입니다.</returns>
1534      <param name="match">검색할 요소의 조건을 정의하는 <see cref="T:System.Predicate`1" /> 대리자입니다.</param>
1535      <exception cref="T:System.ArgumentNullException">
1536        <paramref name="match" />가 null인 경우</exception>
1537    </member>
1538    <member name="M:System.Collections.Generic.List`1.FindLast(System.Predicate{`0})">
1539      <summary>지정된 조건자에 정의된 조건과 일치하는 요소를 검색하고 전체 <see cref="T:System.Collections.Generic.List`1" />에서 마지막으로 검색한 요소를 반환합니다.</summary>
1540      <returns>지정한 조건자에 정의된 조건과 일치하는 요소가 있으면 일치하는 요소 중 마지막 요소이고, 그렇지 않으면 <paramref name="T" /> 형식의 기본값입니다.</returns>
1541      <param name="match">검색할 요소의 조건을 정의하는 <see cref="T:System.Predicate`1" /> 대리자입니다.</param>
1542      <exception cref="T:System.ArgumentNullException">
1543        <paramref name="match" />가 null인 경우</exception>
1544    </member>
1545    <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Int32,System.Int32,System.Predicate{`0})">
1546      <summary>지정한 조건자에 정의된 조건과 일치하는 요소를 검색하여 지정한 수의 요소가 들어 있고 지정한 인덱스에서 끝나는 <see cref="T:System.Collections.Generic.List`1" />의 요소 범위에서 일치하는 요소 중 마지막 요소의 인덱스(0부터 시작)를 반환합니다.</summary>
1547      <returns>
1548        <paramref name="match" />에 정의된 조건과 일치하는 요소가 있으면 일치하는 요소 중 마지막 요소의 인덱스(0부터 시작)이고, 그렇지 않으면 -1입니다.</returns>
1549      <param name="startIndex">역방향 검색의 0부터 시작하는 인덱스입니다.</param>
1550      <param name="count">검색할 섹션에 있는 요소 수입니다.</param>
1551      <param name="match">검색할 요소의 조건을 정의하는 <see cref="T:System.Predicate`1" /> 대리자입니다.</param>
1552      <exception cref="T:System.ArgumentNullException">
1553        <paramref name="match" />가 null인 경우</exception>
1554      <exception cref="T:System.ArgumentOutOfRangeException">
1555        <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>
1556    </member>
1557    <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Int32,System.Predicate{`0})">
1558      <summary>지정한 조건자에 정의된 조건과 일치하는 요소를 검색하여 첫 번째 요소에서 지정한 인덱스로 확장하는 <see cref="T:System.Collections.Generic.List`1" />의 요소 범위에서 일치하는 요소 중 마지막 요소의 인덱스(0부터 시작)를 반환합니다.</summary>
1559      <returns>
1560        <paramref name="match" />에 정의된 조건과 일치하는 요소가 있으면 일치하는 요소 중 마지막 요소의 인덱스(0부터 시작)이고, 그렇지 않으면 -1입니다.</returns>
1561      <param name="startIndex">역방향 검색의 0부터 시작하는 인덱스입니다.</param>
1562      <param name="match">검색할 요소의 조건을 정의하는 <see cref="T:System.Predicate`1" /> 대리자입니다.</param>
1563      <exception cref="T:System.ArgumentNullException">
1564        <paramref name="match" />가 null인 경우</exception>
1565      <exception cref="T:System.ArgumentOutOfRangeException">
1566        <paramref name="startIndex" />가 <see cref="T:System.Collections.Generic.List`1" />의 유효한 인덱스 범위 밖에 있는 경우</exception>
1567    </member>
1568    <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Predicate{`0})">
1569      <summary>지정한 조건자에 정의된 조건과 일치하는 요소를 검색하여 전체 <see cref="T:System.Collections.Generic.List`1" />에서 일치하는 요소 중 마지막 요소의 인덱스(0부터 시작)를 반환합니다.</summary>
1570      <returns>
1571        <paramref name="match" />에 정의된 조건과 일치하는 요소가 있으면 일치하는 요소 중 마지막 요소의 인덱스(0부터 시작)이고, 그렇지 않으면 -1입니다.</returns>
1572      <param name="match">검색할 요소의 조건을 정의하는 <see cref="T:System.Predicate`1" /> 대리자입니다.</param>
1573      <exception cref="T:System.ArgumentNullException">
1574        <paramref name="match" />가 null인 경우</exception>
1575    </member>
1576    <member name="M:System.Collections.Generic.List`1.ForEach(System.Action{`0})">
1577      <summary>
1578        <see cref="T:System.Collections.Generic.List`1" />의 각 요소에 대해 지정된 작업을 수행합니다.</summary>
1579      <param name="action">
1580        <see cref="T:System.Collections.Generic.List`1" />의 각 요소에 대해 수행할 <see cref="T:System.Action`1" /> 대리자입니다.</param>
1581      <exception cref="T:System.ArgumentNullException">
1582        <paramref name="action" />가 null인 경우</exception>
1583    </member>
1584    <member name="M:System.Collections.Generic.List`1.GetEnumerator">
1585      <summary>
1586        <see cref="T:System.Collections.Generic.List`1" />을 반복하는 열거자를 반환합니다.</summary>
1587      <returns>
1588        <see cref="T:System.Collections.Generic.List`1" />에 대한 <see cref="T:System.Collections.Generic.List`1.Enumerator" />입니다.</returns>
1589    </member>
1590    <member name="M:System.Collections.Generic.List`1.GetRange(System.Int32,System.Int32)">
1591      <summary>소스 <see cref="T:System.Collections.Generic.List`1" />에 있는 일련의 요소에 대한 단순 복사본을 만듭니다.</summary>
1592      <returns>소스 <see cref="T:System.Collections.Generic.List`1" />에 있는 일련의 요소에 대한 단순 복사본입니다.</returns>
1593      <param name="index">범위가 시작되는 <see cref="T:System.Collections.Generic.List`1" /> 인덱스(0부터 시작)입니다.</param>
1594      <param name="count">범위의 요소 수입니다.</param>
1595      <exception cref="T:System.ArgumentOutOfRangeException">
1596        <paramref name="index" />가 0보다 작습니다.또는<paramref name="count" />가 0보다 작습니다.</exception>
1597      <exception cref="T:System.ArgumentException">
1598        <paramref name="index" /> 및 <paramref name="count" />가 <see cref="T:System.Collections.Generic.List`1" />에 있는 요소의 올바른 범위를 나타내지 않는 경우</exception>
1599    </member>
1600    <member name="M:System.Collections.Generic.List`1.IndexOf(`0)">
1601      <summary>지정된 개체를 검색하고, 전체 <see cref="T:System.Collections.Generic.List`1" />에서 처음으로 검색한 개체의 인덱스(0부터 시작)를 반환합니다.</summary>
1602      <returns>
1603        <paramref name="item" />이 있으면 전체 <see cref="T:System.Collections.Generic.List`1" />에서 맨 처음 발견되는 값의 0부터 시작하는 인덱스이고, 그렇지 않으면 -1입니다.</returns>
1604      <param name="item">
1605        <see cref="T:System.Collections.Generic.List`1" />에서 찾을 개체입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
1606    </member>
1607    <member name="M:System.Collections.Generic.List`1.IndexOf(`0,System.Int32)">
1608      <summary>지정된 개체를 검색하고, 지정된 인덱스부터 마지막 요소까지 포함하는 <see cref="T:System.Collections.Generic.List`1" />의 요소 범위에서 처음으로 검색한 개체의 인덱스(0부터 시작)를 반환합니다.</summary>
1609      <returns>
1610        <paramref name="index" />부터 마지막 요소까지 포함하는 <see cref="T:System.Collections.Generic.List`1" />의 요소 범위에 <paramref name="item" />이 있으면 처음으로 검색한 개체의 인덱스(0부터 시작)이고, 그렇지 않으면 -1입니다.</returns>
1611      <param name="item">
1612        <see cref="T:System.Collections.Generic.List`1" />에서 찾을 개체입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
1613      <param name="index">검색의 0부터 시작하는 인덱스입니다.0은 빈 목록에서 유효합니다.</param>
1614      <exception cref="T:System.ArgumentOutOfRangeException">
1615        <paramref name="index" />가 <see cref="T:System.Collections.Generic.List`1" />의 유효한 인덱스 범위 밖에 있는 경우</exception>
1616    </member>
1617    <member name="M:System.Collections.Generic.List`1.IndexOf(`0,System.Int32,System.Int32)">
1618      <summary>지정된 개체를 검색하고, 지정된 인덱스에서 시작하여 지정된 수의 요소를 포함하는 <see cref="T:System.Collections.Generic.List`1" />의 요소 범위에서 처음으로 검색한 개체의 인덱스(0부터 시작)를 반환합니다.</summary>
1619      <returns>
1620        <paramref name="index" />에서 시작하여 <paramref name="count" />개의 요소를 포함하는 <see cref="T:System.Collections.Generic.List`1" />의 요소 범위에 <paramref name="item" />이 있으면 처음으로 검색한 개체의 인덱스(0부터 시작)이고, 그렇지 않으면 -1입니다.</returns>
1621      <param name="item">
1622        <see cref="T:System.Collections.Generic.List`1" />에서 찾을 개체입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
1623      <param name="index">검색의 0부터 시작하는 인덱스입니다.0은 빈 목록에서 유효합니다.</param>
1624      <param name="count">검색할 섹션에 있는 요소 수입니다.</param>
1625      <exception cref="T:System.ArgumentOutOfRangeException">
1626        <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>
1627    </member>
1628    <member name="M:System.Collections.Generic.List`1.Insert(System.Int32,`0)">
1629      <summary>
1630        <see cref="T:System.Collections.Generic.List`1" />의 지정된 인덱스에 요소를 삽입합니다.</summary>
1631      <param name="index">
1632        <paramref name="item" />를 삽입해야 하는 인덱스(0부터 시작)입니다.</param>
1633      <param name="item">삽입할 개체입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
1634      <exception cref="T:System.ArgumentOutOfRangeException">
1635        <paramref name="index" />가 0보다 작습니다.또는<paramref name="index" />가 <see cref="P:System.Collections.Generic.List`1.Count" />보다 큰 경우</exception>
1636    </member>
1637    <member name="M:System.Collections.Generic.List`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0})">
1638      <summary>
1639        <see cref="T:System.Collections.Generic.List`1" />의 지정된 인덱스에 컬렉션의 요소를 삽입합니다.</summary>
1640      <param name="index">새 요소가 삽입되어야 하는 0부터 시작하는 인덱스입니다.</param>
1641      <param name="collection">요소가 <see cref="T:System.Collections.Generic.List`1" />에 삽입되어야 하는 컬렉션입니다.컬렉션 자체가 null일 수는 없지만 <paramref name="T" /> 형식이 참조 형식인 경우 null인 요소를 포함할 수 있습니다.</param>
1642      <exception cref="T:System.ArgumentNullException">
1643        <paramref name="collection" />가 null인 경우</exception>
1644      <exception cref="T:System.ArgumentOutOfRangeException">
1645        <paramref name="index" />가 0보다 작습니다.또는<paramref name="index" />가 <see cref="P:System.Collections.Generic.List`1.Count" />보다 큰 경우</exception>
1646    </member>
1647    <member name="P:System.Collections.Generic.List`1.Item(System.Int32)">
1648      <summary>지정한 인덱스에 있는 요소를 가져오거나 설정합니다.</summary>
1649      <returns>지정한 인덱스의 요소입니다.</returns>
1650      <param name="index">가져오거나 설정할 요소의 인덱스(0부터 시작)입니다.</param>
1651      <exception cref="T:System.ArgumentOutOfRangeException">
1652        <paramref name="index" />가 0보다 작습니다.또는<paramref name="index" />가 <see cref="P:System.Collections.Generic.List`1.Count" />보다 크거나 같은 경우 </exception>
1653    </member>
1654    <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0)">
1655      <summary>지정된 개체를 검색하고, 전체 <see cref="T:System.Collections.Generic.List`1" />에서 마지막으로 검색한 개체의 인덱스(0부터 시작)를 반환합니다.</summary>
1656      <returns>전체 <see cref="T:System.Collections.Generic.List`1" />에 <paramref name="item" />이 있으면 마지막으로 검색한 개체의 인덱스(0부터 시작)이고, 그렇지 않으면 -1입니다.</returns>
1657      <param name="item">
1658        <see cref="T:System.Collections.Generic.List`1" />에서 찾을 개체입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
1659    </member>
1660    <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0,System.Int32)">
1661      <summary>지정된 개체를 검색하고, 첫 번째 요소부터 지정된 인덱스까지 포함하는 <see cref="T:System.Collections.Generic.List`1" />의 요소 범위에서 마지막으로 검색한 개체의 인덱스(0부터 시작)를 반환합니다.</summary>
1662      <returns>첫 번째 요소부터 <paramref name="index" />까지 포함하는 <see cref="T:System.Collections.Generic.List`1" />의 요소 범위에 <paramref name="item" />이 있으면 마지막으로 검색한 개체의 인덱스(0부터 시작)이고, 그렇지 않으면 -1입니다.</returns>
1663      <param name="item">
1664        <see cref="T:System.Collections.Generic.List`1" />에서 찾을 개체입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
1665      <param name="index">역방향 검색의 0부터 시작하는 인덱스입니다.</param>
1666      <exception cref="T:System.ArgumentOutOfRangeException">
1667        <paramref name="index" />가 <see cref="T:System.Collections.Generic.List`1" />의 유효한 인덱스 범위 밖에 있는 경우 </exception>
1668    </member>
1669    <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0,System.Int32,System.Int32)">
1670      <summary>지정된 개체를 검색하며, 지정된 수의 요소를 포함하고 지정된 인덱스에서 끝나는 <see cref="T:System.Collections.Generic.List`1" />의 요소 범위에서 마지막으로 검색한 개체의 인덱스(0부터 시작)를 반환합니다.</summary>
1671      <returns>
1672        <paramref name="count" />개의 요소를 포함하고 <paramref name="index" />에서 끝나는 <see cref="T:System.Collections.Generic.List`1" />의 요소 범위에 <paramref name="item" />이 있으면 마지막으로 검색한 개체의 인덱스(0부터 시작)이고, 그렇지 않으면 -1입니다.</returns>
1673      <param name="item">
1674        <see cref="T:System.Collections.Generic.List`1" />에서 찾을 개체입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
1675      <param name="index">역방향 검색의 0부터 시작하는 인덱스입니다.</param>
1676      <param name="count">검색할 섹션에 있는 요소 수입니다.</param>
1677      <exception cref="T:System.ArgumentOutOfRangeException">
1678        <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>
1679    </member>
1680    <member name="M:System.Collections.Generic.List`1.Remove(`0)">
1681      <summary>
1682        <see cref="T:System.Collections.Generic.List`1" />에서 맨 처음 발견되는 특정 개체를 제거합니다.</summary>
1683      <returns>
1684        <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>
1685      <param name="item">
1686        <see cref="T:System.Collections.Generic.List`1" />에서 제거할 개체입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
1687    </member>
1688    <member name="M:System.Collections.Generic.List`1.RemoveAll(System.Predicate{`0})">
1689      <summary>지정된 조건자에 정의된 조건과 일치하는 요소를 모두 제거합니다.</summary>
1690      <returns>
1691        <see cref="T:System.Collections.Generic.List`1" />에서 제거한 요소의 수입니다.</returns>
1692      <param name="match">제거할 요소의 조건을 정의하는 <see cref="T:System.Predicate`1" /> 대리자입니다.</param>
1693      <exception cref="T:System.ArgumentNullException">
1694        <paramref name="match" />가 null인 경우</exception>
1695    </member>
1696    <member name="M:System.Collections.Generic.List`1.RemoveAt(System.Int32)">
1697      <summary>
1698        <see cref="T:System.Collections.Generic.List`1" />의 지정한 인덱스에서 요소를 제거합니다.</summary>
1699      <param name="index">제거할 요소의 인덱스(0부터 시작)입니다.</param>
1700      <exception cref="T:System.ArgumentOutOfRangeException">
1701        <paramref name="index" />가 0보다 작습니다.또는<paramref name="index" />가 <see cref="P:System.Collections.Generic.List`1.Count" />보다 크거나 같은 경우</exception>
1702    </member>
1703    <member name="M:System.Collections.Generic.List`1.RemoveRange(System.Int32,System.Int32)">
1704      <summary>
1705        <see cref="T:System.Collections.Generic.List`1" />에서 요소의 범위를 제거합니다.</summary>
1706      <param name="index">제거할 요소의 범위에 대한 0부터 시작하는 인덱스입니다.</param>
1707      <param name="count">제거할 요소의 수입니다.</param>
1708      <exception cref="T:System.ArgumentOutOfRangeException">
1709        <paramref name="index" />가 0보다 작습니다.또는<paramref name="count" />가 0보다 작습니다.</exception>
1710      <exception cref="T:System.ArgumentException">
1711        <paramref name="index" /> 및 <paramref name="count" />가 <see cref="T:System.Collections.Generic.List`1" />에 있는 요소의 올바른 범위를 나타내지 않는 경우</exception>
1712    </member>
1713    <member name="M:System.Collections.Generic.List`1.Reverse">
1714      <summary>전체 <see cref="T:System.Collections.Generic.List`1" />에서 요소의 순서를 반대로 바꿉니다.</summary>
1715    </member>
1716    <member name="M:System.Collections.Generic.List`1.Reverse(System.Int32,System.Int32)">
1717      <summary>지정된 범위에서 요소의 순서를 반대로 바꿉니다.</summary>
1718      <param name="index">순서를 반대로 바꿀 범위의 0부터 시작하는 인덱스입니다.</param>
1719      <param name="count">순서를 반대로 바꿀 범위의 요소 수입니다.</param>
1720      <exception cref="T:System.ArgumentOutOfRangeException">
1721        <paramref name="index" />가 0보다 작습니다.또는<paramref name="count" />가 0보다 작습니다. </exception>
1722      <exception cref="T:System.ArgumentException">
1723        <paramref name="index" /> 및 <paramref name="count" />가 <see cref="T:System.Collections.Generic.List`1" />에 있는 요소의 올바른 범위를 나타내지 않는 경우 </exception>
1724    </member>
1725    <member name="M:System.Collections.Generic.List`1.Sort">
1726      <summary>기본 비교자를 사용하여 전체 <see cref="T:System.Collections.Generic.List`1" />의 요소를 정렬합니다.</summary>
1727      <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>
1728    </member>
1729    <member name="M:System.Collections.Generic.List`1.Sort(System.Collections.Generic.IComparer{`0})">
1730      <summary>지정된 비교자를 사용하여 전체 <see cref="T:System.Collections.Generic.List`1" />에 있는 요소를 정렬합니다.</summary>
1731      <param name="comparer">요소를 비교할 때 사용할 <see cref="T:System.Collections.Generic.IComparer`1" /> 구현이거나, 기본 비교자 <see cref="P:System.Collections.Generic.Comparer`1.Default" />를 사용하려면 null입니다.</param>
1732      <exception cref="T:System.InvalidOperationException">
1733        <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>
1734      <exception cref="T:System.ArgumentException">정렬하는 동안<paramref name="comparer" /> 구현에서 오류가 발생한 경우예를 들어, <paramref name="comparer" />는 항목을 항목 자체와 비교할 때 0을 반환하지 않을 수 있습니다.</exception>
1735    </member>
1736    <member name="M:System.Collections.Generic.List`1.Sort(System.Comparison{`0})">
1737      <summary>지정된 <see cref="T:System.Comparison`1" />을 사용하여 전체 <see cref="T:System.Collections.Generic.List`1" />의 요소를 정렬합니다.</summary>
1738      <param name="comparison">요소를 비교할 때 사용할 <see cref="T:System.Comparison`1" />입니다.</param>
1739      <exception cref="T:System.ArgumentNullException">
1740        <paramref name="comparison" />가 null인 경우</exception>
1741      <exception cref="T:System.ArgumentException">정렬하는 동안<paramref name="comparison" /> 구현에서 오류가 발생한 경우예를 들어, <paramref name="comparison" />는 항목을 항목 자체와 비교할 때 0을 반환하지 않을 수 있습니다.</exception>
1742    </member>
1743    <member name="M:System.Collections.Generic.List`1.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0})">
1744      <summary>지정된 비교자를 사용하여 <see cref="T:System.Collections.Generic.List`1" />의 요소 범위에 있는 요소를 정렬합니다.</summary>
1745      <param name="index">정렬할 범위의 0부터 시작하는 인덱스입니다.</param>
1746      <param name="count">정렬할 범위의 길이입니다.</param>
1747      <param name="comparer">요소를 비교할 때 사용할 <see cref="T:System.Collections.Generic.IComparer`1" /> 구현이거나, 기본 비교자 <see cref="P:System.Collections.Generic.Comparer`1.Default" />를 사용하려면 null입니다.</param>
1748      <exception cref="T:System.ArgumentOutOfRangeException">
1749        <paramref name="index" />가 0보다 작습니다.또는<paramref name="count" />가 0보다 작습니다.</exception>
1750      <exception cref="T:System.ArgumentException">
1751        <paramref name="index" /> 및 <paramref name="count" />가 <see cref="T:System.Collections.Generic.List`1" />에서 올바른 범위를 나타내지 않는 경우또는정렬하는 동안<paramref name="comparer" /> 구현에서 오류가 발생한 경우예를 들어, <paramref name="comparer" />는 항목을 항목 자체와 비교할 때 0을 반환하지 않을 수 있습니다.</exception>
1752      <exception cref="T:System.InvalidOperationException">
1753        <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>
1754    </member>
1755    <member name="P:System.Collections.Generic.List`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
1756      <summary>
1757        <see cref="T:System.Collections.Generic.ICollection`1" />가 읽기 전용인지 여부를 나타내는 값을 가져옵니다.</summary>
1758      <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.<see cref="T:System.Collections.Generic.List`1" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
1759    </member>
1760    <member name="M:System.Collections.Generic.List`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
1761      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
1762      <returns>컬렉션에서 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.Generic.IEnumerator`1" />입니다.</returns>
1763    </member>
1764    <member name="M:System.Collections.Generic.List`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
1765      <summary>특정 <see cref="T:System.Array" /> 인덱스부터 시작하여 <see cref="T:System.Collections.ICollection" />의 요소를 <see cref="T:System.Array" />에 복사합니다.</summary>
1766      <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>
1767      <param name="arrayIndex">
1768        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
1769      <exception cref="T:System.ArgumentNullException">
1770        <paramref name="array" />가 null인 경우</exception>
1771      <exception cref="T:System.ArgumentOutOfRangeException">
1772        <paramref name="arrayIndex" />가 0보다 작습니다.</exception>
1773      <exception cref="T:System.ArgumentException">
1774        <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>
1775    </member>
1776    <member name="P:System.Collections.Generic.List`1.System#Collections#ICollection#IsSynchronized">
1777      <summary>
1778        <see cref="T:System.Collections.ICollection" />에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되는지 여부를 나타내는 값을 가져옵니다.</summary>
1779      <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>
1780    </member>
1781    <member name="P:System.Collections.Generic.List`1.System#Collections#ICollection#SyncRoot">
1782      <summary>
1783        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다.</summary>
1784      <returns>
1785        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체입니다.<see cref="T:System.Collections.Generic.List`1" />의 기본 구현에서 이 속성은 언제나 현재 인스턴스를 반환합니다.</returns>
1786    </member>
1787    <member name="M:System.Collections.Generic.List`1.System#Collections#IEnumerable#GetEnumerator">
1788      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
1789      <returns>컬렉션에서 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.IEnumerator" />입니다.</returns>
1790    </member>
1791    <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Add(System.Object)">
1792      <summary>
1793        <see cref="T:System.Collections.IList" />에 항목을 추가합니다.</summary>
1794      <returns>새 요소가 삽입된 위치입니다.</returns>
1795      <param name="item">
1796        <see cref="T:System.Collections.IList" />에 추가할 <see cref="T:System.Object" />입니다.</param>
1797      <exception cref="T:System.ArgumentException">
1798        <paramref name="item" />의 형식은 <see cref="T:System.Collections.IList" />에 할당할 수 없습니다.</exception>
1799    </member>
1800    <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Contains(System.Object)">
1801      <summary>
1802        <see cref="T:System.Collections.IList" />에 특정 값이 들어 있는지 여부를 확인합니다.</summary>
1803      <returns>true if <paramref name="item" /> is found in the <see cref="T:System.Collections.IList" />; otherwise, false.</returns>
1804      <param name="item">
1805        <see cref="T:System.Collections.IList" />에서 찾을 <see cref="T:System.Object" />입니다.</param>
1806    </member>
1807    <member name="M:System.Collections.Generic.List`1.System#Collections#IList#IndexOf(System.Object)">
1808      <summary>
1809        <see cref="T:System.Collections.IList" />에서 특정 항목의 인덱스를 확인합니다.</summary>
1810      <returns>목록에 있으면 <paramref name="item" />의 인덱스이고, 그렇지 않으면 -1입니다.</returns>
1811      <param name="item">
1812        <see cref="T:System.Collections.IList" />에서 찾을 개체입니다.</param>
1813      <exception cref="T:System.ArgumentException">
1814        <paramref name="item" />의 형식은 <see cref="T:System.Collections.IList" />에 할당할 수 없습니다.</exception>
1815    </member>
1816    <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Insert(System.Int32,System.Object)">
1817      <summary>항목을 <see cref="T:System.Collections.IList" />의 지정된 인덱스에 삽입합니다.</summary>
1818      <param name="index">
1819        <paramref name="item" />를 삽입해야 하는 인덱스(0부터 시작)입니다.</param>
1820      <param name="item">
1821        <see cref="T:System.Collections.IList" />에 삽입할 개체입니다.</param>
1822      <exception cref="T:System.ArgumentOutOfRangeException">
1823        <paramref name="index" />가 <see cref="T:System.Collections.IList" />의 유효한 인덱스가 아닌 경우 </exception>
1824      <exception cref="T:System.ArgumentException">
1825        <paramref name="item" />의 형식은 <see cref="T:System.Collections.IList" />에 할당할 수 없습니다.</exception>
1826    </member>
1827    <member name="P:System.Collections.Generic.List`1.System#Collections#IList#IsFixedSize">
1828      <summary>
1829        <see cref="T:System.Collections.IList" />의 크기가 고정되어 있는지 여부를 나타내는 값을 가져옵니다.</summary>
1830      <returns>
1831        <see cref="T:System.Collections.IList" />의 크기가 고정되어 있으면 true이고, 그렇지 않으면 false입니다.<see cref="T:System.Collections.Generic.List`1" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
1832    </member>
1833    <member name="P:System.Collections.Generic.List`1.System#Collections#IList#IsReadOnly">
1834      <summary>
1835        <see cref="T:System.Collections.IList" />가 읽기 전용인지 여부를 나타내는 값을 가져옵니다.</summary>
1836      <returns>true if the <see cref="T:System.Collections.IList" /> is read-only; otherwise, false.<see cref="T:System.Collections.Generic.List`1" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
1837    </member>
1838    <member name="P:System.Collections.Generic.List`1.System#Collections#IList#Item(System.Int32)">
1839      <summary>지정한 인덱스에 있는 요소를 가져오거나 설정합니다.</summary>
1840      <returns>지정한 인덱스의 요소입니다.</returns>
1841      <param name="index">가져오거나 설정할 요소의 인덱스(0부터 시작)입니다.</param>
1842      <exception cref="T:System.ArgumentOutOfRangeException">
1843        <paramref name="index" />가 <see cref="T:System.Collections.IList" />의 유효한 인덱스가 아닌 경우</exception>
1844      <exception cref="T:System.ArgumentException">속성이 설정되어 있고 <paramref name="value" />의 형식을 <see cref="T:System.Collections.IList" />에 할당할 수 없는 경우</exception>
1845    </member>
1846    <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Remove(System.Object)">
1847      <summary>
1848        <see cref="T:System.Collections.IList" />에서 맨 처음 발견되는 특정 개체를 제거합니다.</summary>
1849      <param name="item">
1850        <see cref="T:System.Collections.IList" />에서 제거할 개체입니다.</param>
1851      <exception cref="T:System.ArgumentException">
1852        <paramref name="item" />의 형식은 <see cref="T:System.Collections.IList" />에 할당할 수 없습니다.</exception>
1853    </member>
1854    <member name="M:System.Collections.Generic.List`1.ToArray">
1855      <summary>
1856        <see cref="T:System.Collections.Generic.List`1" />의 요소를 새 배열에 복사합니다.</summary>
1857      <returns>
1858        <see cref="T:System.Collections.Generic.List`1" />의 요소 복사본을 포함하는 배열입니다.</returns>
1859    </member>
1860    <member name="M:System.Collections.Generic.List`1.TrimExcess">
1861      <summary>
1862        <see cref="T:System.Collections.Generic.List`1" />에 있는 요소의 실제 수가 임계값보다 작은 경우 용량을 요소 수로 설정합니다.</summary>
1863    </member>
1864    <member name="M:System.Collections.Generic.List`1.TrueForAll(System.Predicate{`0})">
1865      <summary>
1866        <see cref="T:System.Collections.Generic.List`1" />의 모든 요소가 지정된 조건자에 정의된 조건과 일치하는지 여부를 확인합니다.</summary>
1867      <returns>
1868        <see cref="T:System.Collections.Generic.List`1" />의 모든 요소가 지정된 조건자에 정의된 조건과 일치하면 true이고, 그렇지 않으면 false입니다.목록에 요소가 없으면 반환 값은 true입니다.</returns>
1869      <param name="match">요소에 대해 확인할 조건을 정의하는 <see cref="T:System.Predicate`1" /> 대리자입니다.</param>
1870      <exception cref="T:System.ArgumentNullException">
1871        <paramref name="match" />가 null인 경우</exception>
1872    </member>
1873    <member name="T:System.Collections.Generic.List`1.Enumerator">
1874      <summary>
1875        <see cref="T:System.Collections.Generic.List`1" />의 요소를 열거합니다.</summary>
1876    </member>
1877    <member name="P:System.Collections.Generic.List`1.Enumerator.Current">
1878      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
1879      <returns>
1880        <see cref="T:System.Collections.Generic.List`1" />에서 열거자의 현재 위치에 있는 요소입니다.</returns>
1881    </member>
1882    <member name="M:System.Collections.Generic.List`1.Enumerator.Dispose">
1883      <summary>
1884        <see cref="T:System.Collections.Generic.List`1.Enumerator" />에서 사용하는 모든 리소스를 해제합니다.</summary>
1885    </member>
1886    <member name="M:System.Collections.Generic.List`1.Enumerator.MoveNext">
1887      <summary>열거자를 <see cref="T:System.Collections.Generic.List`1" />의 다음 요소로 이동합니다.</summary>
1888      <returns>열거자가 다음 요소로 이동한 경우 true가 반환되고, 컬렉션의 끝을 지난 경우 false가 반환됩니다.</returns>
1889      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
1890    </member>
1891    <member name="P:System.Collections.Generic.List`1.Enumerator.System#Collections#IEnumerator#Current">
1892      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
1893      <returns>
1894        <see cref="T:System.Collections.Generic.List`1" />에서 열거자의 현재 위치에 있는 요소입니다.</returns>
1895      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
1896    </member>
1897    <member name="M:System.Collections.Generic.List`1.Enumerator.System#Collections#IEnumerator#Reset">
1898      <summary>컬렉션의 첫 번째 요소 앞의 초기 위치에 열거자를 설정합니다.</summary>
1899      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
1900    </member>
1901    <member name="T:System.Collections.Generic.Queue`1">
1902      <summary>개체의 선입선출(FIFO) 컬렉션을 나타냅니다.</summary>
1903      <typeparam name="T">큐에 있는 요소의 형식을 지정합니다.</typeparam>
1904      <filterpriority>1</filterpriority>
1905    </member>
1906    <member name="M:System.Collections.Generic.Queue`1.#ctor">
1907      <summary>비어 있는 상태에서 기본 초기 용량을 가지는 <see cref="T:System.Collections.Generic.Queue`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
1908    </member>
1909    <member name="M:System.Collections.Generic.Queue`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
1910      <summary>지정된 컬렉션에서 복사한 요소를 포함하고 복사한 요소를 모두 수용할 수 있을 정도의 용량을 가진 <see cref="T:System.Collections.Generic.Queue`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
1911      <param name="collection">해당 요소가 새 <see cref="T:System.Collections.Generic.Queue`1" />에 복사되는 컬렉션입니다.</param>
1912      <exception cref="T:System.ArgumentNullException">
1913        <paramref name="collection" /> is null.</exception>
1914    </member>
1915    <member name="M:System.Collections.Generic.Queue`1.#ctor(System.Int32)">
1916      <summary>비어 있는 상태에서 지정한 초기 용량을 가지는 <see cref="T:System.Collections.Generic.Queue`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
1917      <param name="capacity">
1918        <see cref="T:System.Collections.Generic.Queue`1" />에 포함될 수 있는 초기 요소의 수입니다.</param>
1919      <exception cref="T:System.ArgumentOutOfRangeException">
1920        <paramref name="capacity" /> is less than zero.</exception>
1921    </member>
1922    <member name="M:System.Collections.Generic.Queue`1.Clear">
1923      <summary>
1924        <see cref="T:System.Collections.Generic.Queue`1" />에서 개체를 모두 제거합니다.</summary>
1925      <filterpriority>1</filterpriority>
1926    </member>
1927    <member name="M:System.Collections.Generic.Queue`1.Contains(`0)">
1928      <summary>요소가 <see cref="T:System.Collections.Generic.Queue`1" />에 있는지를 확인합니다.</summary>
1929      <returns>
1930        <paramref name="item" />이 <see cref="T:System.Collections.Generic.Queue`1" />에 있으면 true이고, 그렇지 않으면 false입니다.</returns>
1931      <param name="item">
1932        <see cref="T:System.Collections.Generic.Queue`1" />에서 찾을 개체입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
1933    </member>
1934    <member name="M:System.Collections.Generic.Queue`1.CopyTo(`0[],System.Int32)">
1935      <summary>
1936        <see cref="T:System.Collections.Generic.Queue`1" /> 요소를 지정한 배열 인덱스에서 시작하여 기존의 1차원 <see cref="T:System.Array" />에 복사합니다.</summary>
1937      <param name="array">
1938        <see cref="T:System.Collections.Generic.Queue`1" />에서 복사한 요소의 대상인 1차원 <see cref="T:System.Array" />입니다.<see cref="T:System.Array" />에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
1939      <param name="arrayIndex">
1940        <paramref name="array" />에서 복사가 시작되는 0부터 시작하는 인덱스입니다.</param>
1941      <exception cref="T:System.ArgumentNullException">
1942        <paramref name="array" /> is null.</exception>
1943      <exception cref="T:System.ArgumentOutOfRangeException">
1944        <paramref name="arrayIndex" /> is less than zero.</exception>
1945      <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>
1946    </member>
1947    <member name="P:System.Collections.Generic.Queue`1.Count">
1948      <summary>
1949        <see cref="T:System.Collections.Generic.Queue`1" />에 포함된 요소의 수를 가져옵니다.</summary>
1950      <returns>
1951        <see cref="T:System.Collections.Generic.Queue`1" />에 포함된 요소의 수입니다.</returns>
1952    </member>
1953    <member name="M:System.Collections.Generic.Queue`1.Dequeue">
1954      <summary>
1955        <see cref="T:System.Collections.Generic.Queue`1" />의 시작 부분에서 개체를 제거하고 반환합니다.</summary>
1956      <returns>
1957        <see cref="T:System.Collections.Generic.Queue`1" />의 시작에서 제거하는 개체입니다.</returns>
1958      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Queue`1" /> is empty.</exception>
1959    </member>
1960    <member name="M:System.Collections.Generic.Queue`1.Enqueue(`0)">
1961      <summary>개체를 <see cref="T:System.Collections.Generic.Queue`1" />의 끝 부분에 추가합니다.</summary>
1962      <param name="item">
1963        <see cref="T:System.Collections.Generic.Queue`1" />에 추가할 개체입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
1964    </member>
1965    <member name="M:System.Collections.Generic.Queue`1.GetEnumerator">
1966      <summary>
1967        <see cref="T:System.Collections.Generic.Queue`1" />을 반복하는 열거자를 반환합니다.</summary>
1968      <returns>
1969        <see cref="T:System.Collections.Generic.Queue`1" />에 대한 <see cref="T:System.Collections.Generic.Queue`1.Enumerator" />입니다.</returns>
1970    </member>
1971    <member name="M:System.Collections.Generic.Queue`1.Peek">
1972      <summary>
1973        <see cref="T:System.Collections.Generic.Queue`1" />의 시작 부분에서 개체를 제거하지 않고 반환합니다.</summary>
1974      <returns>
1975        <see cref="T:System.Collections.Generic.Queue`1" />의 처음에 있는 개체입니다.</returns>
1976      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Queue`1" /> is empty.</exception>
1977    </member>
1978    <member name="M:System.Collections.Generic.Queue`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
1979      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
1980      <returns>컬렉션에서 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.Generic.IEnumerator`1" />입니다.</returns>
1981    </member>
1982    <member name="M:System.Collections.Generic.Queue`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
1983      <summary>특정 <see cref="T:System.Array" /> 인덱스부터 시작하여 <see cref="T:System.Collections.ICollection" />의 요소를 <see cref="T:System.Array" />에 복사합니다.</summary>
1984      <param name="array">
1985        <see cref="T:System.Collections.ICollection" />에서 복사한 요소의 대상인 1차원 <see cref="T:System.Array" />입니다.<see cref="T:System.Array" />에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
1986      <param name="index">
1987        <paramref name="array" />에서 복사가 시작되는 0부터 시작하는 인덱스입니다.</param>
1988      <exception cref="T:System.ArgumentNullException">
1989        <paramref name="array" /> is null.</exception>
1990      <exception cref="T:System.ArgumentOutOfRangeException">
1991        <paramref name="index" /> is less than zero.</exception>
1992      <exception cref="T:System.ArgumentException">
1993        <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>
1994    </member>
1995    <member name="P:System.Collections.Generic.Queue`1.System#Collections#ICollection#IsSynchronized">
1996      <summary>
1997        <see cref="T:System.Collections.ICollection" />에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되는지를 나타내는 값을 가져옵니다.</summary>
1998      <returns>
1999        <see cref="T:System.Collections.ICollection" />에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되면 true이고, 그렇지 않으면 false입니다.<see cref="T:System.Collections.Generic.Queue`1" />의 기본 구현에서 이 속성은 항상 false를 반환합니다.</returns>
2000    </member>
2001    <member name="P:System.Collections.Generic.Queue`1.System#Collections#ICollection#SyncRoot">
2002      <summary>
2003        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다.</summary>
2004      <returns>
2005        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체입니다.<see cref="T:System.Collections.Generic.Queue`1" />의 기본 구현에서 이 속성은 항상 현재 인스턴스를 반환합니다.</returns>
2006    </member>
2007    <member name="M:System.Collections.Generic.Queue`1.System#Collections#IEnumerable#GetEnumerator">
2008      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
2009      <returns>컬렉션에서 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.IEnumerator" />입니다.</returns>
2010    </member>
2011    <member name="M:System.Collections.Generic.Queue`1.ToArray">
2012      <summary>
2013        <see cref="T:System.Collections.Generic.Queue`1" /> 요소를 새 배열에 복사합니다.</summary>
2014      <returns>
2015        <see cref="T:System.Collections.Generic.Queue`1" />에서 복사된 요소를 포함하는 새 배열입니다.</returns>
2016    </member>
2017    <member name="M:System.Collections.Generic.Queue`1.TrimExcess">
2018      <summary>
2019        <see cref="T:System.Collections.Generic.Queue`1" />의 실제 요소 수가 현재 용량의 90% 미만인 경우 용량을 이 값으로 설정합니다.</summary>
2020    </member>
2021    <member name="T:System.Collections.Generic.Queue`1.Enumerator">
2022      <summary>
2023        <see cref="T:System.Collections.Generic.Queue`1" />의 요소를 열거합니다.</summary>
2024    </member>
2025    <member name="P:System.Collections.Generic.Queue`1.Enumerator.Current">
2026      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
2027      <returns>
2028        <see cref="T:System.Collections.Generic.Queue`1" />에서 열거자의 현재 위치에 있는 요소입니다.</returns>
2029      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
2030    </member>
2031    <member name="M:System.Collections.Generic.Queue`1.Enumerator.Dispose">
2032      <summary>
2033        <see cref="T:System.Collections.Generic.Queue`1.Enumerator" />에서 사용하는 모든 리소스를 해제합니다.</summary>
2034    </member>
2035    <member name="M:System.Collections.Generic.Queue`1.Enumerator.MoveNext">
2036      <summary>열거자를 <see cref="T:System.Collections.Generic.Queue`1" />의 다음 요소로 이동합니다.</summary>
2037      <returns>열거자가 다음 요소로 이동한 경우 true가 반환되고, 컬렉션의 끝을 지난 경우 false가 반환됩니다.</returns>
2038      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
2039    </member>
2040    <member name="P:System.Collections.Generic.Queue`1.Enumerator.System#Collections#IEnumerator#Current">
2041      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
2042      <returns>컬렉션에서 열거자의 현재 위치에 있는 요소입니다.</returns>
2043      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
2044    </member>
2045    <member name="M:System.Collections.Generic.Queue`1.Enumerator.System#Collections#IEnumerator#Reset">
2046      <summary>컬렉션의 첫 번째 요소 앞의 초기 위치에 열거자를 설정합니다.</summary>
2047      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
2048    </member>
2049    <member name="T:System.Collections.Generic.SortedDictionary`2">
2050      <summary>키에 따라 정렬된 키/값 쌍의 컬렉션을 나타냅니다. </summary>
2051      <typeparam name="TKey">사전에 있는 키의 형식입니다.</typeparam>
2052      <typeparam name="TValue">사전에 있는 값의 형식입니다.</typeparam>
2053      <filterpriority>1</filterpriority>
2054    </member>
2055    <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor">
2056      <summary>비어 있고 키 형식에 대해 기본적으로 구현된 <see cref="T:System.Collections.Generic.IComparer`1" />를 사용하는 빈 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
2057    </member>
2058    <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IComparer{`0})">
2059      <summary>지정된 <see cref="T:System.Collections.Generic.IComparer`1" /> 구현을 사용하여 키를 비교하는 빈 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
2060      <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>
2061    </member>
2062    <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})">
2063      <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>
2064      <param name="dictionary">요소가 새 <see cref="T:System.Collections.Generic.SortedDictionary`2" />에 복사되는 <see cref="T:System.Collections.Generic.IDictionary`2" />입니다.</param>
2065      <exception cref="T:System.ArgumentNullException">
2066        <paramref name="dictionary" />가 null인 경우</exception>
2067      <exception cref="T:System.ArgumentException">
2068        <paramref name="dictionary" />에 중복 키가 하나 이상 포함된 경우</exception>
2069    </member>
2070    <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IComparer{`0})">
2071      <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>
2072      <param name="dictionary">요소가 새 <see cref="T:System.Collections.Generic.SortedDictionary`2" />에 복사되는 <see cref="T:System.Collections.Generic.IDictionary`2" />입니다.</param>
2073      <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>
2074      <exception cref="T:System.ArgumentNullException">
2075        <paramref name="dictionary" />가 null인 경우</exception>
2076      <exception cref="T:System.ArgumentException">
2077        <paramref name="dictionary" />에 중복 키가 하나 이상 포함된 경우</exception>
2078    </member>
2079    <member name="M:System.Collections.Generic.SortedDictionary`2.Add(`0,`1)">
2080      <summary>지정한 키와 값을 가지는 요소를 <see cref="T:System.Collections.Generic.SortedDictionary`2" />에 추가합니다.</summary>
2081      <param name="key">추가할 요소의 키입니다.</param>
2082      <param name="value">추가할 요소의 값입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
2083      <exception cref="T:System.ArgumentNullException">
2084        <paramref name="key" />가 null인 경우</exception>
2085      <exception cref="T:System.ArgumentException">같은 키를 가진 요소가 이미 <see cref="T:System.Collections.Generic.SortedDictionary`2" />에 있는 경우</exception>
2086    </member>
2087    <member name="M:System.Collections.Generic.SortedDictionary`2.Clear">
2088      <summary>
2089        <see cref="T:System.Collections.Generic.SortedDictionary`2" />에서 모든 요소를 제거합니다.</summary>
2090    </member>
2091    <member name="P:System.Collections.Generic.SortedDictionary`2.Comparer">
2092      <summary>
2093        <see cref="T:System.Collections.Generic.SortedDictionary`2" />의 요소를 정렬하는 데 사용되는 <see cref="T:System.Collections.Generic.IComparer`1" />을 가져옵니다.</summary>
2094      <returns>
2095        <see cref="T:System.Collections.Generic.SortedDictionary`2" />의 요소를 정렬하는 데 사용되는 <see cref="T:System.Collections.Generic.IComparer`1" />입니다.</returns>
2096    </member>
2097    <member name="M:System.Collections.Generic.SortedDictionary`2.ContainsKey(`0)">
2098      <summary>
2099        <see cref="T:System.Collections.Generic.SortedDictionary`2" />에 지정된 키를 가진 요소가 포함되어 있는지 여부를 확인합니다.</summary>
2100      <returns>true if the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified key; otherwise, false.</returns>
2101      <param name="key">
2102        <see cref="T:System.Collections.Generic.SortedDictionary`2" />에서 찾을 키입니다.</param>
2103      <exception cref="T:System.ArgumentNullException">
2104        <paramref name="key" />가 null인 경우</exception>
2105    </member>
2106    <member name="M:System.Collections.Generic.SortedDictionary`2.ContainsValue(`1)">
2107      <summary>
2108        <see cref="T:System.Collections.Generic.SortedDictionary`2" />에 지정한 값이 있는 요소가 포함되어 있는지 여부를 확인합니다.</summary>
2109      <returns>true if the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified value; otherwise, false.</returns>
2110      <param name="value">
2111        <see cref="T:System.Collections.Generic.SortedDictionary`2" />에서 찾을 수 있는 값입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
2112    </member>
2113    <member name="M:System.Collections.Generic.SortedDictionary`2.CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
2114      <summary>지정한 인덱스로부터 <see cref="T:System.Collections.Generic.SortedDictionary`2" />의 요소를 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 구조체의 지정한 배열에 복사합니다.</summary>
2115      <param name="array">현재 <see cref="T:System.Collections.Generic.SortedDictionary`2" />에서 복사된 요소의 대상인 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 구조체의 1차원 배열입니다. 이 배열의 인덱스는 0부터 시작해야 합니다.</param>
2116      <param name="index">복사가 시작되는 <paramref name="array" />의 0부터 시작하는 인덱스입니다.</param>
2117      <exception cref="T:System.ArgumentNullException">
2118        <paramref name="array" />가 null인 경우</exception>
2119      <exception cref="T:System.ArgumentOutOfRangeException">
2120        <paramref name="index" />가 0보다 작은 경우</exception>
2121      <exception cref="T:System.ArgumentException">소스 <see cref="T:System.Collections.Generic.SortedDictionary`2" />의 요소 수가 <paramref name="index" />에서 대상 <paramref name="array" /> 끝까지 사용 가능한 공간보다 큰 경우</exception>
2122    </member>
2123    <member name="P:System.Collections.Generic.SortedDictionary`2.Count">
2124      <summary>
2125        <see cref="T:System.Collections.Generic.SortedDictionary`2" />에 포함된 키/값 쌍의 수를 가져옵니다.</summary>
2126      <returns>
2127        <see cref="T:System.Collections.Generic.SortedDictionary`2" />에 포함된 키/값 쌍의 수입니다.</returns>
2128    </member>
2129    <member name="M:System.Collections.Generic.SortedDictionary`2.GetEnumerator">
2130      <summary>
2131        <see cref="T:System.Collections.Generic.SortedDictionary`2" />을 반복하는 열거자를 반환합니다.</summary>
2132      <returns>
2133        <see cref="T:System.Collections.Generic.SortedDictionary`2" />에 대한 <see cref="T:System.Collections.Generic.SortedDictionary`2.Enumerator" />입니다.</returns>
2134    </member>
2135    <member name="P:System.Collections.Generic.SortedDictionary`2.Item(`0)">
2136      <summary>지정된 키에 연결된 값을 가져오거나 설정합니다.</summary>
2137      <returns>지정한 키와 연결된 값입니다.지정한 키가 없으면 get 작업에서 <see cref="T:System.Collections.Generic.KeyNotFoundException" />을 throw하고 set 작업에서 지정한 키가 있는 새 요소를 만듭니다.</returns>
2138      <param name="key">가져오거나 설정할 값의 키입니다.</param>
2139      <exception cref="T:System.ArgumentNullException">
2140        <paramref name="key" />가 null인 경우</exception>
2141      <exception cref="T:System.Collections.Generic.KeyNotFoundException">속성을 검색할 때 컬렉션에 <paramref name="key" />가 없는 경우</exception>
2142    </member>
2143    <member name="P:System.Collections.Generic.SortedDictionary`2.Keys">
2144      <summary>
2145        <see cref="T:System.Collections.Generic.SortedDictionary`2" />의 키를 포함하는 컬렉션을 가져옵니다.</summary>
2146      <returns>
2147        <see cref="T:System.Collections.Generic.SortedDictionary`2" />의 키를 포함하는 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />입니다.</returns>
2148    </member>
2149    <member name="M:System.Collections.Generic.SortedDictionary`2.Remove(`0)">
2150      <summary>
2151        <see cref="T:System.Collections.Generic.SortedDictionary`2" />에서 지정한 키를 가진 요소를 제거합니다.</summary>
2152      <returns>요소가 성공적으로 제거되면 true이고, 그렇지 않으면 false입니다.이 메서드는 <paramref name="key" />가 <see cref="T:System.Collections.Generic.SortedDictionary`2" />에 없는 경우에도 false를 반환합니다.</returns>
2153      <param name="key">제거할 요소의 키입니다.</param>
2154      <exception cref="T:System.ArgumentNullException">
2155        <paramref name="key" />가 null인 경우</exception>
2156    </member>
2157    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{T}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
2158      <summary>
2159        <see cref="T:System.Collections.Generic.ICollection`1" />에 항목을 추가합니다.</summary>
2160      <param name="keyValuePair">
2161        <see cref="T:System.Collections.Generic.ICollection`1" />에 추가할 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 구조체입니다.</param>
2162      <exception cref="T:System.ArgumentNullException">
2163        <paramref name="keyValuePair" />가 null인 경우</exception>
2164      <exception cref="T:System.ArgumentException">같은 키를 가진 요소가 이미 <see cref="T:System.Collections.Generic.SortedDictionary`2" />에 있는 경우</exception>
2165    </member>
2166    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{T}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
2167      <summary>
2168        <see cref="T:System.Collections.Generic.ICollection`1" />에 특정 키와 값이 들어 있는지 여부를 확인합니다.</summary>
2169      <returns>true if <paramref name="keyValuePair" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, false.</returns>
2170      <param name="keyValuePair">
2171        <see cref="T:System.Collections.Generic.ICollection`1" />에서 찾을 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 구조체입니다.</param>
2172    </member>
2173    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{T}#IsReadOnly">
2174      <summary>
2175        <see cref="T:System.Collections.Generic.ICollection`1" />가 읽기 전용인지 여부를 나타내는 값을 가져옵니다.</summary>
2176      <returns>
2177        <see cref="T:System.Collections.Generic.ICollection`1" />이 읽기 전용이면 true이고, 그렇지 않으면 false입니다.<see cref="T:System.Collections.Generic.SortedDictionary`2" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
2178    </member>
2179    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{T}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
2180      <summary>
2181        <see cref="T:System.Collections.Generic.ICollection`1" />에서 맨 처음 발견되는 지정된 요소를 제거합니다.</summary>
2182      <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>
2183      <param name="keyValuePair">
2184        <see cref="T:System.Collections.Generic.ICollection`1" />에서 제거할 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 구조체입니다.</param>
2185    </member>
2186    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
2187      <summary>
2188        <see cref="T:System.Collections.Generic.IDictionary`2" />의 키를 포함하는 <see cref="T:System.Collections.Generic.ICollection`1" />을 가져옵니다.</summary>
2189      <returns>
2190        <see cref="T:System.Collections.Generic.IDictionary`2" />의 키를 포함하는 <see cref="T:System.Collections.Generic.ICollection`1" />입니다.</returns>
2191    </member>
2192    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
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="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
2199      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
2200      <returns>컬렉션을 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.IEnumerator" />입니다.</returns>
2201    </member>
2202    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Keys">
2203      <summary>키를 포함 하는 컬렉션을 가져옵니다는<see cref="T:System.Collections.Generic.SortedDictionary`2" /></summary>
2204      <returns>컬렉션에서 키를 포함 하는<see cref="T:System.Collections.Generic.SortedDictionary`2" /></returns>
2205    </member>
2206    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Values">
2207      <summary>값이 포함 된 컬렉션을 가져옵니다는<see cref="T:System.Collections.Generic.SortedDictionary`2" /></summary>
2208      <returns>컬렉션에서 값을 포함 하는<see cref="T:System.Collections.Generic.SortedDictionary`2" /></returns>
2209    </member>
2210    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
2211      <summary>지정한 배열 인덱스부터 <see cref="T:System.Collections.Generic.ICollection`1" />의 요소를 배열에 복사합니다.</summary>
2212      <param name="array">
2213        <see cref="T:System.Collections.Generic.ICollection`1" />에서 복사한 요소의 대상인 1차원 배열입니다.배열에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
2214      <param name="index">복사가 시작되는 <paramref name="array" />의 0부터 시작하는 인덱스입니다.</param>
2215      <exception cref="T:System.ArgumentNullException">
2216        <paramref name="array" />가 null인 경우</exception>
2217      <exception cref="T:System.ArgumentOutOfRangeException">
2218        <paramref name="index" />가 0보다 작은 경우</exception>
2219      <exception cref="T:System.ArgumentException">
2220        <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>
2221    </member>
2222    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#ICollection#IsSynchronized">
2223      <summary>
2224        <see cref="T:System.Collections.ICollection" />에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되는지 여부를 나타내는 값을 가져옵니다.</summary>
2225      <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>
2226    </member>
2227    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#ICollection#SyncRoot">
2228      <summary>
2229        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다.</summary>
2230      <returns>
2231        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체입니다. </returns>
2232    </member>
2233    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
2234      <summary>제공된 키와 값을 가진 요소를 <see cref="T:System.Collections.IDictionary" />에 추가합니다.</summary>
2235      <param name="key">추가할 요소의 키로 사용할 개체입니다.</param>
2236      <param name="value">추가할 요소의 값으로 사용할 개체입니다.</param>
2237      <exception cref="T:System.ArgumentNullException">
2238        <paramref name="key" />가 null인 경우</exception>
2239      <exception cref="T:System.ArgumentException">
2240        <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>
2241    </member>
2242    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Contains(System.Object)">
2243      <summary>
2244        <see cref="T:System.Collections.IDictionary" />에 지정된 키를 가진 요소가 포함되어 있는지 여부를 확인합니다.</summary>
2245      <returns>true if the <see cref="T:System.Collections.IDictionary" /> contains an element with the key; otherwise, false.</returns>
2246      <param name="key">
2247        <see cref="T:System.Collections.IDictionary" />에서 찾을 키입니다.</param>
2248      <exception cref="T:System.ArgumentNullException">
2249        <paramref name="key" />가 null인 경우</exception>
2250    </member>
2251    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#GetEnumerator">
2252      <summary>
2253        <see cref="T:System.Collections.IDictionary" />의 <see cref="T:System.Collections.IDictionaryEnumerator" />를 반환합니다.</summary>
2254      <returns>
2255        <see cref="T:System.Collections.IDictionary" />에 대한 <see cref="T:System.Collections.IDictionaryEnumerator" />입니다.</returns>
2256    </member>
2257    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#IsFixedSize">
2258      <summary>
2259        <see cref="T:System.Collections.IDictionary" />의 크기가 고정되어 있는지 여부를 나타내는 값을 가져옵니다.</summary>
2260      <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>
2261    </member>
2262    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#IsReadOnly">
2263      <summary>
2264        <see cref="T:System.Collections.IDictionary" />가 읽기 전용인지 여부를 나타내는 값을 가져옵니다.</summary>
2265      <returns>true if the <see cref="T:System.Collections.IDictionary" /> is read-only; 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#Item(System.Object)">
2268      <summary>지정한 키를 가진 요소를 가져오거나 설정합니다.</summary>
2269      <returns>지정한 키를 갖는 요소입니다. <paramref name="key" />가 사전에 없거나 <paramref name="key" />의 형식을 <see cref="T:System.Collections.Generic.SortedDictionary`2" />의 <paramref name="TKey" /> 키 형식에 할당할 수 없으면 null입니다.</returns>
2270      <param name="key">가져올 요소의 키입니다.</param>
2271      <exception cref="T:System.ArgumentNullException">
2272        <paramref name="key" />가 null인 경우</exception>
2273      <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>
2274    </member>
2275    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Keys">
2276      <summary>
2277        <see cref="T:System.Collections.IDictionary" />의 키를 포함하는 <see cref="T:System.Collections.ICollection" />을 가져옵니다.</summary>
2278      <returns>
2279        <see cref="T:System.Collections.IDictionary" />의 키를 포함하는 <see cref="T:System.Collections.ICollection" />입니다.</returns>
2280    </member>
2281    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Remove(System.Object)">
2282      <summary>
2283        <see cref="T:System.Collections.IDictionary" />에서 지정한 키를 가진 요소를 제거합니다.</summary>
2284      <param name="key">제거할 요소의 키입니다.</param>
2285      <exception cref="T:System.ArgumentNullException">
2286        <paramref name="key" />가 null인 경우</exception>
2287    </member>
2288    <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Values">
2289      <summary>
2290        <see cref="T:System.Collections.IDictionary" />의 값을 포함하는 <see cref="T:System.Collections.ICollection" />을 가져옵니다.</summary>
2291      <returns>
2292        <see cref="T:System.Collections.IDictionary" />의 값을 포함하는 <see cref="T:System.Collections.ICollection" />입니다.</returns>
2293    </member>
2294    <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IEnumerable#GetEnumerator">
2295      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
2296      <returns>컬렉션을 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.Generic.IEnumerator`1" />입니다.</returns>
2297    </member>
2298    <member name="M:System.Collections.Generic.SortedDictionary`2.TryGetValue(`0,`1@)">
2299      <summary>지정한 키와 연결된 값을 가져옵니다.</summary>
2300      <returns>true if the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified key; otherwise, false.</returns>
2301      <param name="key">가져올 값의 키입니다.</param>
2302      <param name="value">이 메서드가 반환될 때 지정한 키가 있으면 해당 키와 연결된 값이고, 그렇지 않으면 <paramref name="value" /> 매개 변수 형식의 기본값을 포함합니다. </param>
2303      <exception cref="T:System.ArgumentNullException">
2304        <paramref name="key" />가 null인 경우</exception>
2305    </member>
2306    <member name="P:System.Collections.Generic.SortedDictionary`2.Values">
2307      <summary>
2308        <see cref="T:System.Collections.Generic.SortedDictionary`2" />의 값을 포함하는 컬렉션을 가져옵니다.</summary>
2309      <returns>
2310        <see cref="T:System.Collections.Generic.SortedDictionary`2" />의 값을 포함하는 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />입니다.</returns>
2311    </member>
2312    <member name="T:System.Collections.Generic.SortedDictionary`2.Enumerator">
2313      <summary>
2314        <see cref="T:System.Collections.Generic.SortedDictionary`2" />의 요소를 열거합니다.</summary>
2315    </member>
2316    <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.Current">
2317      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
2318      <returns>
2319        <see cref="T:System.Collections.Generic.SortedDictionary`2" />에서 열거자의 현재 위치에 있는 요소입니다.</returns>
2320    </member>
2321    <member name="M:System.Collections.Generic.SortedDictionary`2.Enumerator.Dispose">
2322      <summary>
2323        <see cref="T:System.Collections.Generic.SortedDictionary`2.Enumerator" />에서 사용하는 모든 리소스를 해제합니다.</summary>
2324    </member>
2325    <member name="M:System.Collections.Generic.SortedDictionary`2.Enumerator.MoveNext">
2326      <summary>열거자를 <see cref="T:System.Collections.Generic.SortedDictionary`2" />의 다음 요소로 이동합니다.</summary>
2327      <returns>열거자가 다음 요소로 이동한 경우 true가 반환되고, 컬렉션의 끝을 지난 경우 false가 반환됩니다.</returns>
2328      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
2329    </member>
2330    <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Entry">
2331      <summary>열거자의 현재 위치에 있는 요소를 <see cref="T:System.Collections.DictionaryEntry" /> 구조체로 가져옵니다.</summary>
2332      <returns>컬렉션에서 사전의 현재 위치에 있는 요소인 <see cref="T:System.Collections.DictionaryEntry" /> 구조체입니다.</returns>
2333      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
2334    </member>
2335    <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Key">
2336      <summary>열거자의 현재 위치에 있는 요소의 키를 가져옵니다.</summary>
2337      <returns>컬렉션에서 열거자의 현재 위치에 있는 요소의 키입니다.</returns>
2338      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
2339    </member>
2340    <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Value">
2341      <summary>열거자의 현재 위치에 있는 요소의 값을 가져옵니다.</summary>
2342      <returns>컬렉션에서 열거자의 현재 위치에 있는 요소의 값입니다.</returns>
2343      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
2344    </member>
2345    <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IEnumerator#Current">
2346      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
2347      <returns>컬렉션에서 열거자의 현재 위치에 있는 요소입니다.</returns>
2348      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
2349    </member>
2350    <member name="M:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IEnumerator#Reset">
2351      <summary>컬렉션의 첫 번째 요소 앞의 초기 위치에 열거자를 설정합니다.</summary>
2352      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
2353    </member>
2354    <member name="T:System.Collections.Generic.SortedDictionary`2.KeyCollection">
2355      <summary>
2356        <see cref="T:System.Collections.Generic.SortedDictionary`2" />의 키 컬렉션을 나타냅니다.이 클래스는 상속될 수 없습니다.</summary>
2357    </member>
2358    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.#ctor(System.Collections.Generic.SortedDictionary{`0,`1})">
2359      <summary>지정한 <see cref="T:System.Collections.Generic.SortedDictionary`2" />의 키를 반영하는 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
2360      <param name="dictionary">해당 키가 새 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />에 반영되는 <see cref="T:System.Collections.Generic.SortedDictionary`2" />입니다.</param>
2361      <exception cref="T:System.ArgumentNullException">
2362        <paramref name="dictionary" />가 null입니다.</exception>
2363    </member>
2364    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.CopyTo(`0[],System.Int32)">
2365      <summary>
2366        <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 요소를 지정한 배열 인덱스에서 시작하여 기존의 1차원 배열에 복사합니다.</summary>
2367      <param name="array">
2368        <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />에서 복사한 요소의 대상인 1차원 배열입니다.배열에서 0부터 시작하는 인덱스를 사용해야 합니다.</param>
2369      <param name="index">
2370        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
2371      <exception cref="T:System.ArgumentNullException">
2372        <paramref name="array" />가 null입니다. </exception>
2373      <exception cref="T:System.ArgumentOutOfRangeException">
2374        <paramref name="index" />가 0보다 작은 경우</exception>
2375      <exception cref="T:System.ArgumentException">소스 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />의 요소 수가 <paramref name="index" />에서 대상 <paramref name="array" /> 끝까지 사용 가능한 공간보다 큰 경우</exception>
2376    </member>
2377    <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.Count">
2378      <summary>
2379        <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />에 포함된 요소 수를 가져옵니다.</summary>
2380      <returns>
2381        <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />에 포함된 요소 수입니다.</returns>
2382    </member>
2383    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.GetEnumerator">
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" />에 대한 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator" /> 구조체입니다.</returns>
2388    </member>
2389    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Add(`0)">
2390      <summary>
2391        <see cref="T:System.Collections.Generic.ICollection`1" />에 항목을 추가합니다.  이 구현은 항상 <see cref="T:System.NotSupportedException" />을 throw합니다.</summary>
2392      <param name="item">
2393        <see cref="T:System.Collections.Generic.ICollection`1" />에 추가할 개체입니다.</param>
2394      <exception cref="T:System.NotSupportedException">항상 throw됩니다. 컬렉션이 읽기 전용입니다.</exception>
2395    </member>
2396    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Clear">
2397      <summary>
2398        <see cref="T:System.Collections.Generic.ICollection`1" />에서 항목을 모두 제거합니다.  이 구현은 항상 <see cref="T:System.NotSupportedException" />을 throw합니다.</summary>
2399      <exception cref="T:System.NotSupportedException">항상 throw됩니다. 컬렉션이 읽기 전용입니다.</exception>
2400    </member>
2401    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Contains(`0)">
2402      <summary>
2403        <see cref="T:System.Collections.Generic.ICollection`1" />에 지정한 값이 들어 있는지 여부를 확인합니다.</summary>
2404      <returns>
2405        <paramref name="item" />가 <see cref="T:System.Collections.Generic.ICollection`1" />에 있으면 true이고, 그렇지 않으면 false입니다.</returns>
2406      <param name="item">
2407        <see cref="T:System.Collections.Generic.ICollection`1" />에서 찾을 개체입니다.</param>
2408    </member>
2409    <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#IsReadOnly">
2410      <summary>
2411        <see cref="T:System.Collections.Generic.ICollection`1" />이 읽기 전용인지 여부를 나타내는 값을 가져옵니다.</summary>
2412      <returns>
2413        <see cref="T:System.Collections.Generic.ICollection`1" />이 읽기 전용이면 true이고, 그렇지 않으면 false입니다.  <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
2414    </member>
2415    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Remove(`0)">
2416      <summary>
2417        <see cref="T:System.Collections.Generic.ICollection`1" />에서 맨 처음 발견되는 특정 개체를 제거합니다.  이 구현은 항상 <see cref="T:System.NotSupportedException" />을 throw합니다.</summary>
2418      <returns>
2419        <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>
2420      <param name="item">
2421        <see cref="T:System.Collections.Generic.ICollection`1" />에서 제거할 개체입니다.</param>
2422      <exception cref="T:System.NotSupportedException">항상 throw됩니다. 컬렉션이 읽기 전용입니다.</exception>
2423    </member>
2424    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
2425      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
2426      <returns>컬렉션에서 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.Generic.IEnumerator`1" />입니다.</returns>
2427    </member>
2428    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
2429      <summary>특정 배열 인덱스부터 <see cref="T:System.Collections.ICollection" />의 요소를 배열에 복사합니다.</summary>
2430      <param name="array">
2431        <see cref="T:System.Collections.ICollection" />에서 복사한 요소의 대상인 1차원 배열입니다.배열에서 0부터 시작하는 인덱스를 사용해야 합니다.</param>
2432      <param name="index">
2433        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
2434      <exception cref="T:System.ArgumentNullException">
2435        <paramref name="array" />가 null입니다.</exception>
2436      <exception cref="T:System.ArgumentOutOfRangeException">
2437        <paramref name="index" />가 0보다 작은 경우</exception>
2438      <exception cref="T:System.ArgumentException">
2439        <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>
2440    </member>
2441    <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#ICollection#IsSynchronized">
2442      <summary>
2443        <see cref="T:System.Collections.ICollection" />에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되는지 여부를 나타내는 값을 가져옵니다.</summary>
2444      <returns>
2445        <see cref="T:System.Collections.ICollection" />에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되면 true이고, 그렇지 않으면 false입니다.  <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
2446    </member>
2447    <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#ICollection#SyncRoot">
2448      <summary>
2449        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다.</summary>
2450      <returns>
2451        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체입니다.  <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />의 기본 구현에서 이 속성은 언제나 현재 인스턴스를 반환합니다.</returns>
2452    </member>
2453    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#IEnumerable#GetEnumerator">
2454      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
2455      <returns>컬렉션에서 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.IEnumerator" />입니다.</returns>
2456    </member>
2457    <member name="T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator">
2458      <summary>
2459        <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />의 요소를 열거합니다.</summary>
2460    </member>
2461    <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.Current">
2462      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
2463      <returns>
2464        <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />에서 열거자의 현재 위치에 있는 요소입니다.</returns>
2465    </member>
2466    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.Dispose">
2467      <summary>
2468        <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator" />에서 사용하는 모든 리소스를 해제합니다.</summary>
2469    </member>
2470    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.MoveNext">
2471      <summary>열거자를 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />의 다음 요소로 이동합니다.</summary>
2472      <returns>열거자가 다음 요소로 이동한 경우 true가 반환되고, 컬렉션의 끝을 지난 경우 false가 반환됩니다.</returns>
2473      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
2474    </member>
2475    <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Current">
2476      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
2477      <returns>컬렉션에서 열거자의 현재 위치에 있는 요소입니다.</returns>
2478      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
2479    </member>
2480    <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Reset">
2481      <summary>컬렉션의 첫 번째 요소 앞의 초기 위치에 열거자를 설정합니다.</summary>
2482      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
2483    </member>
2484    <member name="T:System.Collections.Generic.SortedDictionary`2.ValueCollection">
2485      <summary>
2486        <see cref="T:System.Collections.Generic.SortedDictionary`2" />의 값 컬렉션을 나타냅니다.이 클래스는 상속될 수 없습니다.</summary>
2487    </member>
2488    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.#ctor(System.Collections.Generic.SortedDictionary{`0,`1})">
2489      <summary>지정한 <see cref="T:System.Collections.Generic.SortedDictionary`2" />의 값을 반영하는 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
2490      <param name="dictionary">해당 값이 새 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />에 반영되는 <see cref="T:System.Collections.Generic.SortedDictionary`2" />입니다.</param>
2491      <exception cref="T:System.ArgumentNullException">
2492        <paramref name="dictionary" />가 null입니다.</exception>
2493    </member>
2494    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.CopyTo(`1[],System.Int32)">
2495      <summary>
2496        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 요소를 지정한 배열 인덱스에서 시작하여 기존의 1차원 배열에 복사합니다.</summary>
2497      <param name="array">
2498        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />에서 복사한 요소의 대상인 1차원 배열입니다.배열에서 0부터 시작하는 인덱스를 사용해야 합니다.</param>
2499      <param name="index">
2500        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
2501      <exception cref="T:System.ArgumentNullException">
2502        <paramref name="array" />가 null입니다.</exception>
2503      <exception cref="T:System.ArgumentOutOfRangeException">
2504        <paramref name="index" />가 0보다 작은 경우</exception>
2505      <exception cref="T:System.ArgumentException">소스 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />의 요소 수가 <paramref name="index" />에서 대상 <paramref name="array" /> 끝까지 사용 가능한 공간보다 큰 경우</exception>
2506    </member>
2507    <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.Count">
2508      <summary>
2509        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />에 포함된 요소 수를 가져옵니다.</summary>
2510      <returns>
2511        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />에 포함된 요소 수입니다.</returns>
2512    </member>
2513    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.GetEnumerator">
2514      <summary>
2515        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />을 반복하는 열거자를 반환합니다.</summary>
2516      <returns>
2517        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />에 대한 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator" /> 구조체입니다.</returns>
2518    </member>
2519    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Add(`1)">
2520      <summary>
2521        <see cref="T:System.Collections.Generic.ICollection`1" />에 항목을 추가합니다.  이 구현은 항상 <see cref="T:System.NotSupportedException" />을 throw합니다.</summary>
2522      <param name="item">
2523        <see cref="T:System.Collections.Generic.ICollection`1" />에 추가할 개체입니다.</param>
2524      <exception cref="T:System.NotSupportedException">항상 throw됩니다. 컬렉션이 읽기 전용입니다.</exception>
2525    </member>
2526    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Clear">
2527      <summary>
2528        <see cref="T:System.Collections.Generic.ICollection`1" />에서 항목을 모두 제거합니다.  이 구현은 항상 <see cref="T:System.NotSupportedException" />을 throw합니다.</summary>
2529      <exception cref="T:System.NotSupportedException">항상 throw됩니다. 컬렉션이 읽기 전용입니다.</exception>
2530    </member>
2531    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Contains(`1)">
2532      <summary>
2533        <see cref="T:System.Collections.Generic.ICollection`1" />에 지정한 값이 들어 있는지 여부를 확인합니다.</summary>
2534      <returns>
2535        <paramref name="item" />가 <see cref="T:System.Collections.Generic.ICollection`1" />에 있으면 true이고, 그렇지 않으면 false입니다.</returns>
2536      <param name="item">
2537        <see cref="T:System.Collections.Generic.ICollection`1" />에서 찾을 개체입니다.</param>
2538    </member>
2539    <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#IsReadOnly">
2540      <summary>
2541        <see cref="T:System.Collections.Generic.ICollection`1" />이 읽기 전용인지 여부를 나타내는 값을 가져옵니다.</summary>
2542      <returns>
2543        <see cref="T:System.Collections.Generic.ICollection`1" />이 읽기 전용이면 true이고, 그렇지 않으면 false입니다.  <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
2544    </member>
2545    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Remove(`1)">
2546      <summary>
2547        <see cref="T:System.Collections.Generic.ICollection`1" />에서 맨 처음 발견되는 특정 개체를 제거합니다.  이 구현은 항상 <see cref="T:System.NotSupportedException" />을 throw합니다.</summary>
2548      <returns>
2549        <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>
2550      <param name="item">
2551        <see cref="T:System.Collections.Generic.ICollection`1" />에서 제거할 개체입니다.</param>
2552      <exception cref="T:System.NotSupportedException">항상 throw됩니다. 컬렉션이 읽기 전용입니다.</exception>
2553    </member>
2554    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
2555      <summary>
2556        <see cref="T:System.Collections.Generic.ICollection`1" />에서 맨 처음 발견되는 특정 개체를 제거합니다.  이 구현은 항상 <see cref="T:System.NotSupportedException" />을 throw합니다.</summary>
2557      <returns>
2558        <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>
2559      <exception cref="T:System.NotSupportedException">항상 throw됩니다. 컬렉션이 읽기 전용입니다.</exception>
2560    </member>
2561    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
2562      <summary>특정 배열 인덱스부터 <see cref="T:System.Collections.ICollection" />의 요소를 배열에 복사합니다.</summary>
2563      <param name="array">
2564        <see cref="T:System.Collections.ICollection" />에서 복사한 요소의 대상인 1차원 배열입니다.배열에서 0부터 시작하는 인덱스를 사용해야 합니다.</param>
2565      <param name="index">
2566        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
2567      <exception cref="T:System.ArgumentNullException">
2568        <paramref name="array" />가 null입니다.</exception>
2569      <exception cref="T:System.ArgumentOutOfRangeException">
2570        <paramref name="index" />가 0보다 작은 경우</exception>
2571      <exception cref="T:System.ArgumentException">
2572        <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>
2573    </member>
2574    <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#ICollection#IsSynchronized">
2575      <summary>
2576        <see cref="T:System.Collections.ICollection" />에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되는지 여부를 나타내는 값을 가져옵니다.</summary>
2577      <returns>
2578        <see cref="T:System.Collections.ICollection" />에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되면 true이고, 그렇지 않으면 false입니다.  <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
2579    </member>
2580    <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#ICollection#SyncRoot">
2581      <summary>
2582        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다.</summary>
2583      <returns>
2584        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체입니다.  <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />의 기본 구현에서 이 속성은 언제나 현재 인스턴스를 반환합니다.</returns>
2585    </member>
2586    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#IEnumerable#GetEnumerator">
2587      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
2588      <returns>컬렉션에서 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.IEnumerator" />입니다.</returns>
2589    </member>
2590    <member name="T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator">
2591      <summary>
2592        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />의 요소를 열거합니다.</summary>
2593    </member>
2594    <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.Current">
2595      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
2596      <returns>
2597        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />에서 열거자의 현재 위치에 있는 요소입니다.</returns>
2598    </member>
2599    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.Dispose">
2600      <summary>
2601        <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator" />에서 사용하는 모든 리소스를 해제합니다.</summary>
2602    </member>
2603    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.MoveNext">
2604      <summary>열거자를 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />의 다음 요소로 이동합니다.</summary>
2605      <returns>열거자가 다음 요소로 이동한 경우 true가 반환되고, 컬렉션의 끝을 지난 경우 false가 반환됩니다.</returns>
2606      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
2607    </member>
2608    <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Current">
2609      <summary>열거자의 현재 위치에 있는 요소를 가져옵니다.</summary>
2610      <returns>컬렉션에서 열거자의 현재 위치에 있는 요소입니다.</returns>
2611      <exception cref="T:System.InvalidOperationException">열거자가 컬렉션의 첫 번째 요소 앞 또는 마지막 요소 뒤에 배치되는 경우 </exception>
2612    </member>
2613    <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Reset">
2614      <summary>컬렉션의 첫 번째 요소 앞의 초기 위치에 열거자를 설정합니다.</summary>
2615      <exception cref="T:System.InvalidOperationException">열거자가 만들어진 후 컬렉션이 수정된 경우 </exception>
2616    </member>
2617    <member name="T:System.Collections.Generic.SortedList`2">
2618      <summary>연관된 <see cref="T:System.Collections.Generic.IComparer`1" /> 구현을 기반으로 키에 따라 정렬된 키/값 쌍의 컬렉션을 나타냅니다. </summary>
2619      <typeparam name="TKey">컬렉션에 있는 키의 형식입니다.</typeparam>
2620      <typeparam name="TValue">컬렉션에 있는 값의 형식입니다.</typeparam>
2621    </member>
2622    <member name="M:System.Collections.Generic.SortedList`2.#ctor">
2623      <summary>기본 초기 용량을 갖고 있고 기본 <see cref="T:System.Collections.Generic.IComparer`1" />을 사용하는 비어 있는 <see cref="T:System.Collections.Generic.SortedList`2" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
2624    </member>
2625    <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IComparer{`0})">
2626      <summary>기본 초기 용량을 갖고 있고 지정된 <see cref="T:System.Collections.Generic.IComparer`1" />을 사용하는 비어 있는 <see cref="T:System.Collections.Generic.SortedList`2" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
2627      <param name="comparer">키를 비교할 때 사용하는 <see cref="T:System.Collections.Generic.IComparer`1" /> 구현입니다.또는null이면 기본 <see cref="T:System.Collections.Generic.Comparer`1" />을 키의 형식으로 사용합니다.</param>
2628    </member>
2629    <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})">
2630      <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>
2631      <param name="dictionary">요소가 새 <see cref="T:System.Collections.Generic.SortedList`2" />에 복사되는 <see cref="T:System.Collections.Generic.IDictionary`2" />입니다.</param>
2632      <exception cref="T:System.ArgumentNullException">
2633        <paramref name="dictionary" />가 null인 경우</exception>
2634      <exception cref="T:System.ArgumentException">
2635        <paramref name="dictionary" />에 중복 키가 하나 이상 포함된 경우</exception>
2636    </member>
2637    <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IComparer{`0})">
2638      <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>
2639      <param name="dictionary">요소가 새 <see cref="T:System.Collections.Generic.SortedList`2" />에 복사되는 <see cref="T:System.Collections.Generic.IDictionary`2" />입니다.</param>
2640      <param name="comparer">키를 비교할 때 사용하는 <see cref="T:System.Collections.Generic.IComparer`1" /> 구현입니다.또는null이면 기본 <see cref="T:System.Collections.Generic.Comparer`1" />을 키의 형식으로 사용합니다.</param>
2641      <exception cref="T:System.ArgumentNullException">
2642        <paramref name="dictionary" />가 null인 경우</exception>
2643      <exception cref="T:System.ArgumentException">
2644        <paramref name="dictionary" />에 중복 키가 하나 이상 포함된 경우</exception>
2645    </member>
2646    <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Int32)">
2647      <summary>지정된 초기 용량을 갖고 있고 기본 <see cref="T:System.Collections.Generic.IComparer`1" />을 사용하는 비어 있는 <see cref="T:System.Collections.Generic.SortedList`2" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
2648      <param name="capacity">
2649        <see cref="T:System.Collections.Generic.SortedList`2" />에 포함될 수 있는 초기 요소 수입니다.</param>
2650      <exception cref="T:System.ArgumentOutOfRangeException">
2651        <paramref name="capacity" />가 0보다 작은 경우</exception>
2652    </member>
2653    <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Int32,System.Collections.Generic.IComparer{`0})">
2654      <summary>지정된 초기 용량을 갖고 있고 지정된 <see cref="T:System.Collections.Generic.IComparer`1" />을 사용하는 비어 있는 <see cref="T:System.Collections.Generic.SortedList`2" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
2655      <param name="capacity">
2656        <see cref="T:System.Collections.Generic.SortedList`2" />에 포함될 수 있는 초기 요소 수입니다.</param>
2657      <param name="comparer">키를 비교할 때 사용하는 <see cref="T:System.Collections.Generic.IComparer`1" /> 구현입니다.또는null이면 기본 <see cref="T:System.Collections.Generic.Comparer`1" />을 키의 형식으로 사용합니다.</param>
2658      <exception cref="T:System.ArgumentOutOfRangeException">
2659        <paramref name="capacity" />가 0보다 작은 경우</exception>
2660    </member>
2661    <member name="M:System.Collections.Generic.SortedList`2.Add(`0,`1)">
2662      <summary>지정한 키와 값을 가지는 요소를 <see cref="T:System.Collections.Generic.SortedList`2" />에 추가합니다.</summary>
2663      <param name="key">추가할 요소의 키입니다.</param>
2664      <param name="value">추가할 요소의 값입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
2665      <exception cref="T:System.ArgumentNullException">
2666        <paramref name="key" />가 null인 경우</exception>
2667      <exception cref="T:System.ArgumentException">같은 키를 가진 요소가 이미 <see cref="T:System.Collections.Generic.SortedList`2" />에 있는 경우</exception>
2668    </member>
2669    <member name="P:System.Collections.Generic.SortedList`2.Capacity">
2670      <summary>
2671        <see cref="T:System.Collections.Generic.SortedList`2" />에 포함될 수 있는 요소의 수를 가져오거나 설정합니다.</summary>
2672      <returns>
2673        <see cref="T:System.Collections.Generic.SortedList`2" />에 포함될 수 있는 요소의 수입니다.</returns>
2674      <exception cref="T:System.ArgumentOutOfRangeException">
2675        <see cref="P:System.Collections.Generic.SortedList`2.Capacity" />가 <see cref="P:System.Collections.Generic.SortedList`2.Count" />보다 작은 값으로 설정된 경우</exception>
2676      <exception cref="T:System.OutOfMemoryException">시스템에 사용 가능한 메모리가 부족합니다.</exception>
2677    </member>
2678    <member name="M:System.Collections.Generic.SortedList`2.Clear">
2679      <summary>
2680        <see cref="T:System.Collections.Generic.SortedList`2" />에서 모든 요소를 제거합니다.</summary>
2681    </member>
2682    <member name="P:System.Collections.Generic.SortedList`2.Comparer">
2683      <summary>정렬된 목록에 대한 <see cref="T:System.Collections.Generic.IComparer`1" />을 가져옵니다. </summary>
2684      <returns>현재 <see cref="T:System.Collections.Generic.SortedList`2" />에 대한 <see cref="T:System.IComparable`1" />입니다.</returns>
2685    </member>
2686    <member name="M:System.Collections.Generic.SortedList`2.ContainsKey(`0)">
2687      <summary>
2688        <see cref="T:System.Collections.Generic.SortedList`2" />에 특정 키가 들어 있는지 여부를 확인합니다.</summary>
2689      <returns>true if the <see cref="T:System.Collections.Generic.SortedList`2" /> contains an element with the specified key; otherwise, false.</returns>
2690      <param name="key">
2691        <see cref="T:System.Collections.Generic.SortedList`2" />에서 찾을 키입니다.</param>
2692      <exception cref="T:System.ArgumentNullException">
2693        <paramref name="key" />가 null인 경우</exception>
2694    </member>
2695    <member name="M:System.Collections.Generic.SortedList`2.ContainsValue(`1)">
2696      <summary>
2697        <see cref="T:System.Collections.Generic.SortedList`2" />에 특정 값이 들어 있는지 여부를 확인합니다.</summary>
2698      <returns>true if the <see cref="T:System.Collections.Generic.SortedList`2" /> contains an element with the specified value; otherwise, false.</returns>
2699      <param name="value">
2700        <see cref="T:System.Collections.Generic.SortedList`2" />에서 찾을 수 있는 값입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
2701    </member>
2702    <member name="P:System.Collections.Generic.SortedList`2.Count">
2703      <summary>
2704        <see cref="T:System.Collections.Generic.SortedList`2" />에 포함된 키/값 쌍의 수를 가져옵니다.</summary>
2705      <returns>
2706        <see cref="T:System.Collections.Generic.SortedList`2" />에 포함된 키/값 쌍의 수입니다.</returns>
2707    </member>
2708    <member name="M:System.Collections.Generic.SortedList`2.GetEnumerator">
2709      <summary>
2710        <see cref="T:System.Collections.Generic.SortedList`2" />을 반복하는 열거자를 반환합니다.</summary>
2711      <returns>
2712        <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>
2713    </member>
2714    <member name="M:System.Collections.Generic.SortedList`2.IndexOfKey(`0)">
2715      <summary>지정한 키를 검색하고 전체 <see cref="T:System.Collections.Generic.SortedList`2" />에서 인덱스(0부터 시작)를 반환합니다.</summary>
2716      <returns>전체 <see cref="T:System.Collections.Generic.SortedList`2" />에 <paramref name="key" />가 있으면 해당 인덱스(0부터 시작)이고, 그렇지 않으면 -1입니다.</returns>
2717      <param name="key">
2718        <see cref="T:System.Collections.Generic.SortedList`2" />에서 찾을 키입니다.</param>
2719      <exception cref="T:System.ArgumentNullException">
2720        <paramref name="key" />가 null인 경우</exception>
2721    </member>
2722    <member name="M:System.Collections.Generic.SortedList`2.IndexOfValue(`1)">
2723      <summary>지정한 값을 검색하고 전체 <see cref="T:System.Collections.Generic.SortedList`2" />에서 이 값이 맨 처음 발견되는 인덱스(0부터 시작)를 반환합니다.</summary>
2724      <returns>
2725        <paramref name="value" />이 있으면 전체 <see cref="T:System.Collections.Generic.SortedList`2" />에서 맨 처음 발견되는 값의 0부터 시작하는 인덱스이고, 그렇지 않으면 -1입니다.</returns>
2726      <param name="value">
2727        <see cref="T:System.Collections.Generic.SortedList`2" />에서 찾을 수 있는 값입니다.참조 형식에 대해 값은 null이 될 수 있습니다.</param>
2728    </member>
2729    <member name="P:System.Collections.Generic.SortedList`2.Item(`0)">
2730      <summary>지정된 키에 연결된 값을 가져오거나 설정합니다.</summary>
2731      <returns>지정한 키와 연결된 값입니다.지정한 키가 없으면 get 작업에서 <see cref="T:System.Collections.Generic.KeyNotFoundException" />을 throw하고 set 작업에서 지정한 키를 사용하여 새 요소를 만듭니다.</returns>
2732      <param name="key">가져오거나 설정할 값이 있는 키입니다.</param>
2733      <exception cref="T:System.ArgumentNullException">
2734        <paramref name="key" />가 null인 경우</exception>
2735      <exception cref="T:System.Collections.Generic.KeyNotFoundException">속성을 검색할 때 컬렉션에 <paramref name="key" />가 없는 경우</exception>
2736    </member>
2737    <member name="P:System.Collections.Generic.SortedList`2.Keys">
2738      <summary>
2739        <see cref="T:System.Collections.Generic.SortedList`2" />에 있는 키가 들어있는 컬렉션을 정렬 순서대로 가져옵니다.</summary>
2740      <returns>
2741        <see cref="T:System.Collections.Generic.SortedList`2" />의 키를 포함하는 <see cref="T:System.Collections.Generic.IList`1" />입니다.</returns>
2742    </member>
2743    <member name="M:System.Collections.Generic.SortedList`2.Remove(`0)">
2744      <summary>
2745        <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>특정 <see cref="T:System.Array" /> 인덱스부터 시작하여 <see cref="T:System.Collections.Generic.ICollection`1" />의 요소를 <see cref="T:System.Array" />에 복사합니다.</summary>
2773      <param name="array">
2774        <see cref="T:System.Collections.Generic.ICollection`1" />에서 복사한 요소의 대상인 일차원 <see cref="T:System.Array" />입니다.<see cref="T:System.Array" />에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
2775      <param name="arrayIndex">복사가 시작되는 <paramref name="array" />의 0부터 시작하는 인덱스입니다.</param>
2776      <exception cref="T:System.ArgumentNullException">
2777        <paramref name="array" />가 null인 경우 </exception>
2778      <exception cref="T:System.ArgumentOutOfRangeException">
2779        <paramref name="arrayIndex" />가 0보다 작은 경우 </exception>
2780      <exception cref="T:System.ArgumentException">소스 <see cref="T:System.Collections.Generic.ICollection`1" />의 요소 수가 <paramref name="arrayIndex" />에서 대상 <paramref name="array" /> 끝까지 사용 가능한 공간보다 큰 경우</exception>
2781    </member>
2782    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{T}#IsReadOnly">
2783      <summary>
2784        <see cref="T:System.Collections.Generic.ICollection`1" />가 읽기 전용인지 여부를 나타내는 값을 가져옵니다.</summary>
2785      <returns>
2786        <see cref="T:System.Collections.Generic.ICollection`1" />이 읽기 전용이면 true이고, 그렇지 않으면 false입니다.<see cref="T:System.Collections.Generic.SortedList`2" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
2787    </member>
2788    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{T}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
2789      <summary>
2790        <see cref="T:System.Collections.Generic.ICollection`1" />에서 맨 처음 발견되는 특정 키/값 쌍을 제거합니다.</summary>
2791      <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>
2792      <param name="keyValuePair">
2793        <see cref="T:System.Collections.Generic.ICollection`1" />에서 제거할 <see cref="T:System.Collections.Generic.KeyValuePair`2" />입니다.</param>
2794    </member>
2795    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
2796      <summary>
2797        <see cref="T:System.Collections.Generic.IDictionary`2" />의 키를 포함하는 <see cref="T:System.Collections.Generic.ICollection`1" />을 가져옵니다.</summary>
2798      <returns>
2799        <see cref="T:System.Collections.Generic.IDictionary`2" />의 키를 포함하는 <see cref="T:System.Collections.Generic.ICollection`1" />입니다.</returns>
2800    </member>
2801    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
2802      <summary>
2803        <see cref="T:System.Collections.Generic.IDictionary`2" />의 값을 포함하는 <see cref="T:System.Collections.Generic.ICollection`1" />을 가져옵니다.</summary>
2804      <returns>
2805        <see cref="T:System.Collections.Generic.IDictionary`2" />의 값을 포함하는 <see cref="T:System.Collections.Generic.ICollection`1" />입니다.</returns>
2806    </member>
2807    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
2808      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
2809      <returns>컬렉션을 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.Generic.IEnumerator`1" />입니다.</returns>
2810    </member>
2811    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Keys">
2812      <summary>읽기 전용 사전의 키를 포함하는 열거 가능한 컬렉션을 가져옵니다.</summary>
2813      <returns>읽기 전용 사전의 키를 포함하는 열거 가능한 컬렉션입니다.</returns>
2814    </member>
2815    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Values">
2816      <summary>읽기 전용 사전의 값을 포함하는 열거 가능한 컬렉션을 가져옵니다.</summary>
2817      <returns>읽기 전용 사전의 값을 포함하는 열거 가능한 컬렉션입니다.</returns>
2818    </member>
2819    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
2820      <summary>특정 <see cref="T:System.Array" /> 인덱스부터 시작하여 <see cref="T:System.Collections.ICollection" />의 요소를 <see cref="T:System.Array" />에 복사합니다.</summary>
2821      <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>
2822      <param name="arrayIndex">복사가 시작되는 <paramref name="array" />의 0부터 시작하는 인덱스입니다.</param>
2823      <exception cref="T:System.ArgumentNullException">
2824        <paramref name="array" />가 null인 경우</exception>
2825      <exception cref="T:System.ArgumentOutOfRangeException">
2826        <paramref name="arrayIndex" />가 0보다 작은 경우</exception>
2827      <exception cref="T:System.ArgumentException">
2828        <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>
2829    </member>
2830    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#ICollection#IsSynchronized">
2831      <summary>
2832        <see cref="T:System.Collections.ICollection" />에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되는지 여부를 나타내는 값을 가져옵니다.</summary>
2833      <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>
2834    </member>
2835    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#ICollection#SyncRoot">
2836      <summary>
2837        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다.</summary>
2838      <returns>
2839        <see cref="T:System.Collections.ICollection" />에 대한 액세스를 동기화하는 데 사용할 수 있는 개체입니다.<see cref="T:System.Collections.Generic.SortedList`2" />의 기본 구현에서 이 속성은 언제나 현재 인스턴스를 반환합니다.</returns>
2840    </member>
2841    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
2842      <summary>제공된 키와 값을 가진 요소를 <see cref="T:System.Collections.IDictionary" />에 추가합니다.</summary>
2843      <param name="key">추가할 요소의 키로 사용하는 <see cref="T:System.Object" />입니다.</param>
2844      <param name="value">추가할 요소의 값으로 사용하는 <see cref="T:System.Object" />입니다.</param>
2845      <exception cref="T:System.ArgumentNullException">
2846        <paramref name="key" />가 null인 경우</exception>
2847      <exception cref="T:System.ArgumentException">
2848        <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>
2849    </member>
2850    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Contains(System.Object)">
2851      <summary>
2852        <see cref="T:System.Collections.IDictionary" />에 지정된 키를 가진 요소가 포함되어 있는지 여부를 확인합니다.</summary>
2853      <returns>true if the <see cref="T:System.Collections.IDictionary" /> contains an element with the key; otherwise, false.</returns>
2854      <param name="key">
2855        <see cref="T:System.Collections.IDictionary" />에서 찾을 키입니다.</param>
2856      <exception cref="T:System.ArgumentNullException">
2857        <paramref name="key" />가 null인 경우</exception>
2858    </member>
2859    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#GetEnumerator">
2860      <summary>
2861        <see cref="T:System.Collections.IDictionary" />의 <see cref="T:System.Collections.IDictionaryEnumerator" />를 반환합니다.</summary>
2862      <returns>
2863        <see cref="T:System.Collections.IDictionary" />에 대한 <see cref="T:System.Collections.IDictionaryEnumerator" />입니다.</returns>
2864    </member>
2865    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#IsFixedSize">
2866      <summary>
2867        <see cref="T:System.Collections.IDictionary" />의 크기가 고정되어 있는지 여부를 나타내는 값을 가져옵니다.</summary>
2868      <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>
2869    </member>
2870    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#IsReadOnly">
2871      <summary>
2872        <see cref="T:System.Collections.IDictionary" />가 읽기 전용인지 여부를 나타내는 값을 가져옵니다.</summary>
2873      <returns>true if the <see cref="T:System.Collections.IDictionary" /> is read-only; otherwise, false.<see cref="T:System.Collections.Generic.SortedList`2" />의 기본 구현에서 이 속성은 언제나 false를 반환합니다.</returns>
2874    </member>
2875    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Item(System.Object)">
2876      <summary>지정한 키를 가진 요소를 가져오거나 설정합니다.</summary>
2877      <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>
2878      <param name="key">가져오거나 설정할 요소의 키입니다.</param>
2879      <exception cref="T:System.ArgumentNullException">
2880        <paramref name="key" />가 null인 경우</exception>
2881      <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>
2882    </member>
2883    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Keys">
2884      <summary>
2885        <see cref="T:System.Collections.IDictionary" />의 키를 포함하는 <see cref="T:System.Collections.ICollection" />을 가져옵니다.</summary>
2886      <returns>
2887        <see cref="T:System.Collections.IDictionary" />의 키를 포함하는 <see cref="T:System.Collections.ICollection" />입니다.</returns>
2888    </member>
2889    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Remove(System.Object)">
2890      <summary>
2891        <see cref="T:System.Collections.IDictionary" />에서 지정한 키를 가진 요소를 제거합니다.</summary>
2892      <param name="key">제거할 요소의 키입니다.</param>
2893      <exception cref="T:System.ArgumentNullException">
2894        <paramref name="key" />가 null인 경우</exception>
2895    </member>
2896    <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Values">
2897      <summary>
2898        <see cref="T:System.Collections.IDictionary" />의 값을 포함하는 <see cref="T:System.Collections.ICollection" />을 가져옵니다.</summary>
2899      <returns>
2900        <see cref="T:System.Collections.IDictionary" />의 값을 포함하는 <see cref="T:System.Collections.ICollection" />입니다.</returns>
2901    </member>
2902    <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IEnumerable#GetEnumerator">
2903      <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
2904      <returns>컬렉션을 반복하는 데 사용할 수 있는 <see cref="T:System.Collections.IEnumerator" />입니다.</returns>
2905    </member>
2906    <member name="M:System.Collections.Generic.SortedList`2.TrimExcess">
2907      <summary>
2908        <see cref="T:System.Collections.Generic.SortedList`2" />의 실제 요소 수가 현재 용량의 90% 미만인 경우 용량을 이 값으로 설정합니다.</summary>
2909    </member>
2910    <member name="M:System.Collections.Generic.SortedList`2.TryGetValue(`0,`1@)">
2911      <summary>지정한 키와 연결된 값을 가져옵니다.</summary>
2912      <returns>true if the <see cref="T:System.Collections.Generic.SortedList`2" /> contains an element with the specified key; otherwise, false.</returns>
2913      <param name="key">가져올 값이 있는 키입니다.</param>
2914      <param name="value">이 메서드가 반환될 때 지정한 키가 있으면 해당 키와 연결된 값이고, 그렇지 않으면 <paramref name="value" /> 매개 변수 형식의 기본값을 포함합니다.이 매개 변수는 초기화되지 않은 상태로 전달됩니다.</param>
2915      <exception cref="T:System.ArgumentNullException">
2916        <paramref name="key" />가 null인 경우</exception>
2917    </member>
2918    <member name="P:System.Collections.Generic.SortedList`2.Values">
2919      <summary>
2920        <see cref="T:System.Collections.Generic.SortedList`2" />의 값을 포함하는 컬렉션을 가져옵니다.</summary>
2921      <returns>
2922        <see cref="T:System.Collections.Generic.SortedList`2" />의 값을 포함하는 <see cref="T:System.Collections.Generic.IList`1" />입니다.</returns>
2923    </member>
2924    <member name="T:System.Collections.Generic.SortedSet`1">
2925      <summary>정렬된 순서대로 유지 관리되는 개체의 컬렉션을 나타냅니다.</summary>
2926      <typeparam name="T">집합에 있는 요소의 형식입니다.</typeparam>
2927    </member>
2928    <member name="M:System.Collections.Generic.SortedSet`1.#ctor">
2929      <summary>
2930        <see cref="T:System.Collections.Generic.SortedSet`1" /> 클래스의 새 인스턴스를 초기화합니다. </summary>
2931    </member>
2932    <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IComparer{`0})">
2933      <summary>지정된 비교자를 사용하는 <see cref="T:System.Collections.Generic.SortedSet`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
2934      <param name="comparer">개체 비교에 사용할 기본 비교자입니다. </param>
2935      <exception cref="T:System.ArgumentNullException">
2936        <paramref name="comparer" />가 null인 경우</exception>
2937    </member>
2938    <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
2939      <summary>지정한 열거 가능한 컬렉션에서 복사된 요소를 포함하는 <see cref="T:System.Collections.Generic.SortedSet`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
2940      <param name="collection">복사할 열거 가능한 컬렉션입니다. </param>
2941    </member>
2942    <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IComparer{`0})">
2943      <summary>지정한 열거 가능한 컬렉션에서 복사된 요소를 포함하고 지정된 비교자를 사용하는 <see cref="T:System.Collections.Generic.SortedSet`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
2944      <param name="collection">복사할 열거 가능한 컬렉션입니다. </param>
2945      <param name="comparer">개체 비교에 사용할 기본 비교자입니다. </param>
2946      <exception cref="T:System.ArgumentNullException">
2947        <paramref name="collection" />가 null인 경우</exception>
2948    </member>
2949    <member name="M:System.Collections.Generic.SortedSet`1.Add(`0)">
2950      <summary>집합에 요소를 추가하고 성공적으로 추가되었는지 여부를 나타내는 값을 반환합니다.</summary>
2951      <returns>
2952        <paramref name="item" />이 집합에 추가되었으면 true이고, 그렇지 않으면 false입니다. </returns>
2953      <param name="item">집합에 추가할 요소입니다.</param>
2954    </member>
2955    <member name="M:System.Collections.Generic.SortedSet`1.Clear">
2956      <summary>집합에서 요소를 모두 제거합니다.</summary>
2957    </member>
2958    <member name="P:System.Collections.Generic.SortedSet`1.Comparer">
2959      <summary>
2960        <see cref="T:System.Collections.Generic.SortedSet`1" />의 값이 같은지 확인하는 데 사용되는 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 개체를 가져옵니다.</summary>
2961      <returns>
2962        <see cref="T:System.Collections.Generic.SortedSet`1" />의 값이 같은지 확인하는 데 사용되는 비교자입니다.</returns>
2963    </member>
2964    <member name="M:System.Collections.Generic.SortedSet`1.Contains(`0)">
2965      <summary>집합에 특정 요소가 들어 있는지 여부를 확인합니다.</summary>
2966      <returns>집합에 <paramref name="item" />이 들어 있으면 true이고, 그렇지 않으면 false입니다.</returns>
2967      <param name="item">집합에서 찾을 요소입니다.</param>
2968    </member>
2969    <member name="M:System.Collections.Generic.SortedSet`1.CopyTo(`0[])">
2970      <summary>대상 배열의 처음부터 시작하여 전체 <see cref="T:System.Collections.Generic.SortedSet`1" />를 호환되는 1차원 배열에 복사합니다.</summary>
2971      <param name="array">
2972        <see cref="T:System.Collections.Generic.SortedSet`1" />에서 복사한 요소의 대상인 1차원 배열입니다.</param>
2973      <exception cref="T:System.ArgumentException">소스 <see cref="T:System.Collections.Generic.SortedSet`1" />의 요소의 수가 대상 배열이 포함할 수 있는 요소의 수를 초과하는 경우 </exception>
2974      <exception cref="T:System.ArgumentNullException">
2975        <paramref name="array" />가 null인 경우</exception>
2976    </member>
2977    <member name="M:System.Collections.Generic.SortedSet`1.CopyTo(`0[],System.Int32)">
2978      <summary>지정된 배열 인덱스에서 시작하여 전체 <see cref="T:System.Collections.Generic.SortedSet`1" />를 호환되는 1차원 배열에 복사합니다.</summary>
2979      <param name="array">
2980        <see cref="T:System.Collections.Generic.SortedSet`1" />에서 복사한 요소의 대상인 1차원 배열입니다.배열에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
2981      <param name="index">
2982        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
2983      <exception cref="T:System.ArgumentException">소스 배열의 요소 수가 <paramref name="index" />에서 대상 배열 끝까지의 사용 가능한 공간보다 큰 경우</exception>
2984      <exception cref="T:System.ArgumentNullException">
2985        <paramref name="array" />가 null인 경우</exception>
2986      <exception cref="T:System.ArgumentOutOfRangeException">
2987        <paramref name="index" />가 0보다 작은 경우</exception>
2988    </member>
2989    <member name="M:System.Collections.Generic.SortedSet`1.CopyTo(`0[],System.Int32,System.Int32)">
2990      <summary>지정된 배열 인덱스에서 시작하여 <see cref="T:System.Collections.Generic.SortedSet`1" />에 있는 지정된 개수의 요소를 호환되는 1차원 배열에 복사합니다.</summary>
2991      <param name="array">
2992        <see cref="T:System.Collections.Generic.SortedSet`1" />에서 복사한 요소의 대상인 1차원 배열입니다.배열에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
2993      <param name="index">
2994        <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
2995      <param name="count">복사할 요소의 수입니다.</param>
2996      <exception cref="T:System.ArgumentException">소스 배열의 요소 수가 <paramref name="index" />에서 대상 배열 끝까지의 사용 가능한 공간보다 큰 경우</exception>
2997      <exception cref="T:System.ArgumentNullException">
2998        <paramref name="array" />가 null인 경우</exception>
2999      <exception cref="T:System.ArgumentOutOfRangeException">
3000        <paramref name="index" />가 0보다 작은 경우또는<paramref name="count" />가 0보다 작은 경우</exception>
3001    </member>
3002    <member name="P:System.Collections.Generic.SortedSet`1.Count">
3003      <summary>
3004        <see cref="T:System.Collections.Generic.SortedSet`1" />의 요소 수를 가져옵니다.</summary>
3005      <returns>
3006        <see cref="T:System.Collections.Generic.SortedSet`1" />의 요소 수입니다.</returns>
3007    </member>
3008    <member name="M:System.Collections.Generic.SortedSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0})">
3009      <summary>현재 <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체에서 지정된 컬렉션에 있는 모든 요소를 제거합니다.</summary>
3010      <param name="other">
3011        <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체에서 제거할 항목 컬렉션입니다.</param>
3012      <exception cref="T:System.ArgumentNullException">
3013        <paramref name="other" />가 null인 경우</exception>
3014    </member>
3015    <member name="M:System.Collections.Generic.SortedSet`1.GetEnumerator">
3016      <summary>
3017        <see cref="T:System.Collections.Generic.SortedSet`1" />을 반복하는 열거자를 반환합니다.</summary>
3018      <returns>정렬된 순서로 <see cref="T:System.Collections.Generic.SortedSet`1" />을 반복하는 열거자입니다.</returns>
3019    </member>
3020    <member name="M:System.Collections.Generic.SortedSet`1.GetViewBetween(`0,`0)">
3021      <summary>
3022        <see cref="T:System.Collections.Generic.SortedSet`1" />에 있는 하위 집합의 뷰를 반환합니다.</summary>
3023      <returns>지정된 범위의 값만 포함하는 하위 집합 뷰입니다.</returns>
3024      <param name="lowerValue">뷰에서 원하는 가장 낮은 값입니다.</param>
3025      <param name="upperValue">뷰에서 원하는 가장 높은 값입니다. </param>
3026      <exception cref="T:System.ArgumentException">비교자에 따르면 <paramref name="lowerValue" />은 <paramref name="upperValue" />보다 큽니다.</exception>
3027      <exception cref="T:System.ArgumentOutOfRangeException">뷰에서 시도한 작업이 <paramref name="lowerValue" /> 및 <paramref name="upperValue" />에 의해 지정된 범위를 벗어났습니다.</exception>
3028    </member>
3029    <member name="M:System.Collections.Generic.SortedSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0})">
3030      <summary>지정된 컬렉션에도 있는 요소만 포함되도록 현재 <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체를 수정합니다.</summary>
3031      <param name="other">현재 <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체와 비교할 컬렉션입니다.</param>
3032      <exception cref="T:System.ArgumentNullException">
3033        <paramref name="other" />가 null인 경우</exception>
3034    </member>
3035    <member name="M:System.Collections.Generic.SortedSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
3036      <summary>
3037        <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체가 지정된 컬렉션의 진 부분 집합인지 확인합니다.</summary>
3038      <returns>
3039        <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체가 <paramref name="other" />의 진 부분 집합이면 true이고, 그렇지 않으면 false입니다.</returns>
3040      <param name="other">현재 <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체와 비교할 컬렉션입니다.</param>
3041      <exception cref="T:System.ArgumentNullException">
3042        <paramref name="other" />가 null인 경우</exception>
3043    </member>
3044    <member name="M:System.Collections.Generic.SortedSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
3045      <summary>
3046        <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체가 지정된 컬렉션의 진 상위 집합인지 확인합니다.</summary>
3047      <returns>
3048        <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체가 <paramref name="other" />의 진 포함 집합이면 true이고, 그렇지 않으면 false입니다.</returns>
3049      <param name="other">현재 <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체와 비교할 컬렉션입니다. </param>
3050      <exception cref="T:System.ArgumentNullException">
3051        <paramref name="other" />가 null인 경우</exception>
3052    </member>
3053    <member name="M:System.Collections.Generic.SortedSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
3054      <summary>
3055        <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체가 지정된 컬렉션의 하위 집합인지 확인합니다.</summary>
3056      <returns>현재 <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체가 <paramref name="other" />의 하위 집합이면 true이고, 그렇지 않으면 false입니다.</returns>
3057      <param name="other">현재 <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체와 비교할 컬렉션입니다.</param>
3058      <exception cref="T:System.ArgumentNullException">
3059        <paramref name="other" />가 null인 경우</exception>
3060    </member>
3061    <member name="M:System.Collections.Generic.SortedSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
3062      <summary>
3063        <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체가 지정된 컬렉션의 상위 집합인지 확인합니다.</summary>
3064      <returns>
3065        <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체가 <paramref name="other" />의 포함 집합이면 true이고, 그렇지 않으면 false입니다.</returns>
3066      <param name="other">현재 <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체와 비교할 컬렉션입니다. </param>
3067      <exception cref="T:System.ArgumentNullException">
3068        <paramref name="other" />가 null인 경우</exception>
3069    </member>
3070    <member name="P:System.Collections.Generic.SortedSet`1.Max">
3071      <summary>비교자로 정의된 <see cref="T:System.Collections.Generic.SortedSet`1" />의 최대값을 가져옵니다.</summary>
3072      <returns>집합의 최대값입니다.</returns>
3073    </member>
3074    <member name="P:System.Collections.Generic.SortedSet`1.Min">
3075      <summary>비교자로 정의된 <see cref="T:System.Collections.Generic.SortedSet`1" />의 최소값을 가져옵니다.</summary>
3076      <returns>집합의 최소값입니다.</returns>
3077    </member>
3078    <member name="M:System.Collections.Generic.SortedSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
3079      <summary>현재 <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체와 지정된 컬렉션이 공통 요소를 공유하는지 여부를 확인합니다.</summary>
3080      <returns>
3081        <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체와 <paramref name="other" />가 최소한 하나의 요소를 공유하면 true이고, 그렇지 않으면 false입니다.</returns>
3082      <param name="other">현재 <see cref="T:System.Collections.Generic.SortedSet`1" /> 개체와 비교할 컬렉션입니다.</param>
3083      <exception cref="T:System.ArgumentNullException">
3084        <paramref name="other" />가 null인 경우</exception>
3085    </member>
3086    <member name="M:System.Collections.Generic.SortedSet`1.Remove(`0)">
3087      <summary>
3088        <see cref="T:System.Collections.Generic.SortedSet`1" />에서 지정된 항목을 제거합니다.</summary>
3089      <returns>요소를 찾아서 성공적으로 제거했으면 true이고, 그렇지 않으면 false입니다. </returns>
3090      <param name="item">제거할 요소입니다.</param>
3091    </member>
3092    <member name="M:System.Collections.Generic.SortedSet`1.RemoveWhere(System.Predicate{`0})">
3093      <summary>
3094        <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>지정된 배열 인덱스에서 시작하여 전체 <see cref="T:System.Collections.Generic.SortedSet`1" />를 호환되는 1차원 배열에 복사합니다.</summary>
3139      <param name="array">
3140        <see cref="T:System.Collections.Generic.SortedSet`1" />에서 복사한 요소의 대상인 1차원 배열입니다.배열에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
3141      <param name="index">
3142        <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">
3236        <paramref name="array" />에서 복사가 시작되는 0부터 시작하는 인덱스입니다.</param>
3237      <exception cref="T:System.ArgumentNullException">
3238        <paramref name="array" /> is null.</exception>
3239      <exception cref="T:System.ArgumentOutOfRangeException">
3240        <paramref name="arrayIndex" /> is less than zero.</exception>
3241      <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>
3242    </member>
3243    <member name="P:System.Collections.Generic.Stack`1.Count">
3244      <summary>
3245        <see cref="T:System.Collections.Generic.Stack`1" />에 포함된 요소 수를 가져옵니다.</summary>
3246      <returns>
3247        <see cref="T:System.Collections.Generic.Stack`1" />에 포함된 요소 수입니다.</returns>
3248    </member>
3249    <member name="M:System.Collections.Generic.Stack`1.GetEnumerator">
3250      <summary>
3251        <see cref="T:System.Collections.Generic.Stack`1" />에 대한 열거자를 반환합니다.</summary>
3252      <returns>
3253        <see cref="T:System.Collections.Generic.Stack`1" />에 대한 <see cref="T:System.Collections.Generic.Stack`1.Enumerator" />입니다.</returns>
3254    </member>
3255    <member name="M:System.Collections.Generic.Stack`1.Peek">
3256      <summary>
3257        <see cref="T:System.Collections.Generic.Stack`1" />의 맨 위에서 개체를 제거하지 않고 반환합니다.</summary>
3258      <returns>
3259        <see cref="T:System.Collections.Generic.Stack`1" />의 맨 위에 있는 개체입니다.</returns>
3260      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Stack`1" /> is empty.</exception>
3261    </member>
3262    <member name="M:System.Collections.Generic.Stack`1.Pop">
3263      <summary>
3264        <see cref="T:System.Collections.Generic.Stack`1" />의 맨 위에서 개체를 제거하고 반환합니다.</summary>
3265      <returns>
3266        <see cref="T:System.Collections.Generic.Stack`1" />의 맨 위에서 제거되는 개체입니다.</returns>
3267      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Stack`1" /> is empty.</exception>
3268    </member>
3269    <member name="M:System.Collections.Generic.Stack`1.Push(`0)">
3270      <summary>개체를 <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>특정 <see cref="T:System.Array" /> 인덱스부터 시작하여 <see cref="T:System.Collections.ICollection" />의 요소를 <see cref="T:System.Array" />에 복사합니다.</summary>
3280      <param name="array">
3281        <see cref="T:System.Collections.ICollection" />에서 복사한 요소의 대상인 1차원 <see cref="T:System.Array" />입니다.<see cref="T:System.Array" />에는 0부터 시작하는 인덱스가 있어야 합니다.</param>
3282      <param name="arrayIndex">
3283        <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>