Revert "PR-5360"
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Collections.xml
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>Manages a compact array of bit values, which are represented as Booleans, where <see langword="true" /> indicates that the bit is on (1) and <see langword="false" /> indicates the bit is off (0).</summary>
9     </member>
10     <member name="M:System.Collections.BitArray.#ctor(System.Boolean[])">
11       <summary>Initializes a new instance of the <see cref="T:System.Collections.BitArray" /> class that contains bit values copied from the specified array of Booleans.</summary>
12       <param name="values">An array of Booleans to copy.</param>
13       <exception cref="T:System.ArgumentNullException">
14         <paramref name="values" /> is <see langword="null" />.</exception>
15     </member>
16     <member name="M:System.Collections.BitArray.#ctor(System.Byte[])">
17       <summary>Initializes a new instance of the <see cref="T:System.Collections.BitArray" /> class that contains bit values copied from the specified array of bytes.</summary>
18       <param name="bytes">An array of bytes containing the values to copy, where each byte represents eight consecutive bits.</param>
19       <exception cref="T:System.ArgumentNullException">
20         <paramref name="bytes" /> is <see langword="null" />.</exception>
21       <exception cref="T:System.ArgumentException">The length of <paramref name="bytes" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
22     </member>
23     <member name="M:System.Collections.BitArray.#ctor(System.Collections.BitArray)">
24       <summary>Initializes a new instance of the <see cref="T:System.Collections.BitArray" /> class that contains bit values copied from the specified <see cref="T:System.Collections.BitArray" />.</summary>
25       <param name="bits">The <see cref="T:System.Collections.BitArray" /> to copy.</param>
26       <exception cref="T:System.ArgumentNullException">
27         <paramref name="bits" /> is <see langword="null" />.</exception>
28     </member>
29     <member name="M:System.Collections.BitArray.#ctor(System.Int32)">
30       <summary>Initializes a new instance of the <see cref="T:System.Collections.BitArray" /> class that can hold the specified number of bit values, which are initially set to <see langword="false" />.</summary>
31       <param name="length">The number of bit values in the new <see cref="T:System.Collections.BitArray" />.</param>
32       <exception cref="T:System.ArgumentOutOfRangeException">
33         <paramref name="length" /> is less than zero.</exception>
34     </member>
35     <member name="M:System.Collections.BitArray.#ctor(System.Int32,System.Boolean)">
36       <summary>Initializes a new instance of the <see cref="T:System.Collections.BitArray" /> class that can hold the specified number of bit values, which are initially set to the specified value.</summary>
37       <param name="length">The number of bit values in the new <see cref="T:System.Collections.BitArray" />.</param>
38       <param name="defaultValue">The Boolean value to assign to each bit.</param>
39       <exception cref="T:System.ArgumentOutOfRangeException">
40         <paramref name="length" /> is less than zero.</exception>
41     </member>
42     <member name="M:System.Collections.BitArray.#ctor(System.Int32[])">
43       <summary>Initializes a new instance of the <see cref="T:System.Collections.BitArray" /> class that contains bit values copied from the specified array of 32-bit integers.</summary>
44       <param name="values">An array of integers containing the values to copy, where each integer represents 32 consecutive bits.</param>
45       <exception cref="T:System.ArgumentNullException">
46         <paramref name="values" /> is <see langword="null" />.</exception>
47       <exception cref="T:System.ArgumentException">The length of <paramref name="values" /> is greater than <see cref="F:System.Int32.MaxValue" /></exception>
48     </member>
49     <member name="M:System.Collections.BitArray.And(System.Collections.BitArray)">
50       <summary>Performs the bitwise AND operation between the elements of the current <see cref="T:System.Collections.BitArray" /> object and the corresponding elements in the specified array. The current <see cref="T:System.Collections.BitArray" /> object will be modified to store the result of the bitwise AND operation.</summary>
51       <param name="value">The array with which to perform the bitwise AND operation.</param>
52       <returns>An array containing the result of the bitwise AND operation, which is a reference to the current <see cref="T:System.Collections.BitArray" /> object.</returns>
53       <exception cref="T:System.ArgumentNullException">
54         <paramref name="value" /> is <see langword="null" />.</exception>
55       <exception cref="T:System.ArgumentException">
56         <paramref name="value" /> and the current <see cref="T:System.Collections.BitArray" /> do not have the same number of elements.</exception>
57     </member>
58     <member name="M:System.Collections.BitArray.Clone">
59       <summary>Creates a shallow copy of the <see cref="T:System.Collections.BitArray" />.</summary>
60       <returns>A shallow copy of the <see cref="T:System.Collections.BitArray" />.</returns>
61     </member>
62     <member name="M:System.Collections.BitArray.CopyTo(System.Array,System.Int32)">
63       <summary>Copies the entire <see cref="T:System.Collections.BitArray" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array.</summary>
64       <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.BitArray" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
65       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
66       <exception cref="T:System.ArgumentNullException">
67         <paramref name="array" /> is <see langword="null" />.</exception>
68       <exception cref="T:System.ArgumentOutOfRangeException">
69         <paramref name="index" /> is less than zero.</exception>
70       <exception cref="T:System.ArgumentException">
71         <paramref name="array" /> is multidimensional.
72 -or-
73 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" />.</exception>
74       <exception cref="T:System.InvalidCastException">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>
75     </member>
76     <member name="P:System.Collections.BitArray.Count">
77       <summary>Gets the number of elements contained in the <see cref="T:System.Collections.BitArray" />.</summary>
78       <returns>The number of elements contained in the <see cref="T:System.Collections.BitArray" />.</returns>
79     </member>
80     <member name="M:System.Collections.BitArray.Get(System.Int32)">
81       <summary>Gets the value of the bit at a specific position in the <see cref="T:System.Collections.BitArray" />.</summary>
82       <param name="index">The zero-based index of the value to get.</param>
83       <returns>The value of the bit at position <paramref name="index" />.</returns>
84       <exception cref="T:System.ArgumentOutOfRangeException">
85         <paramref name="index" /> is less than zero.
86 -or-
87 <paramref name="index" /> is greater than or equal to the number of elements in the <see cref="T:System.Collections.BitArray" />.</exception>
88     </member>
89     <member name="M:System.Collections.BitArray.GetEnumerator">
90       <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.BitArray" />.</summary>
91       <returns>An <see cref="T:System.Collections.IEnumerator" /> for the entire <see cref="T:System.Collections.BitArray" />.</returns>
92     </member>
93     <member name="P:System.Collections.BitArray.IsReadOnly">
94       <summary>Gets a value indicating whether the <see cref="T:System.Collections.BitArray" /> is read-only.</summary>
95       <returns>This property is always <see langword="false" />.</returns>
96     </member>
97     <member name="P:System.Collections.BitArray.IsSynchronized">
98       <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.BitArray" /> is synchronized (thread safe).</summary>
99       <returns>This property is always <see langword="false" />.</returns>
100     </member>
101     <member name="P:System.Collections.BitArray.Item(System.Int32)">
102       <summary>Gets or sets the value of the bit at a specific position in the <see cref="T:System.Collections.BitArray" />.</summary>
103       <param name="index">The zero-based index of the value to get or set.</param>
104       <returns>The value of the bit at position <paramref name="index" />.</returns>
105       <exception cref="T:System.ArgumentOutOfRangeException">
106         <paramref name="index" /> is less than zero.
107 -or-
108 <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.BitArray.Count" />.</exception>
109     </member>
110     <member name="M:System.Collections.BitArray.LeftShift(System.Int32)">
111       <param name="count" />
112     </member>
113     <member name="P:System.Collections.BitArray.Length">
114       <summary>Gets or sets the number of elements in the <see cref="T:System.Collections.BitArray" />.</summary>
115       <returns>The number of elements in the <see cref="T:System.Collections.BitArray" />.</returns>
116       <exception cref="T:System.ArgumentOutOfRangeException">The property is set to a value that is less than zero.</exception>
117     </member>
118     <member name="M:System.Collections.BitArray.Not">
119       <summary>Inverts all the bit values in the current <see cref="T:System.Collections.BitArray" />, so that elements set to <see langword="true" /> are changed to <see langword="false" />, and elements set to <see langword="false" /> are changed to <see langword="true" />.</summary>
120       <returns>The current instance with inverted bit values.</returns>
121     </member>
122     <member name="M:System.Collections.BitArray.Or(System.Collections.BitArray)">
123       <summary>Performs the bitwise OR operation between the elements of the current <see cref="T:System.Collections.BitArray" /> object and the corresponding elements in the specified array. The current <see cref="T:System.Collections.BitArray" /> object will be modified to store the result of the bitwise OR operation.</summary>
124       <param name="value">The array with which to perform the bitwise OR operation.</param>
125       <returns>An array containing the result of the bitwise OR operation, which is a reference to the current <see cref="T:System.Collections.BitArray" /> object.</returns>
126       <exception cref="T:System.ArgumentNullException">
127         <paramref name="value" /> is <see langword="null" />.</exception>
128       <exception cref="T:System.ArgumentException">
129         <paramref name="value" /> and the current <see cref="T:System.Collections.BitArray" /> do not have the same number of elements.</exception>
130     </member>
131     <member name="M:System.Collections.BitArray.RightShift(System.Int32)">
132       <param name="count" />
133     </member>
134     <member name="M:System.Collections.BitArray.Set(System.Int32,System.Boolean)">
135       <summary>Sets the bit at a specific position in the <see cref="T:System.Collections.BitArray" /> to the specified value.</summary>
136       <param name="index">The zero-based index of the bit to set.</param>
137       <param name="value">The Boolean value to assign to the bit.</param>
138       <exception cref="T:System.ArgumentOutOfRangeException">
139         <paramref name="index" /> is less than zero.
140 -or-
141 <paramref name="index" /> is greater than or equal to the number of elements in the <see cref="T:System.Collections.BitArray" />.</exception>
142     </member>
143     <member name="M:System.Collections.BitArray.SetAll(System.Boolean)">
144       <summary>Sets all bits in the <see cref="T:System.Collections.BitArray" /> to the specified value.</summary>
145       <param name="value">The Boolean value to assign to all bits.</param>
146     </member>
147     <member name="P:System.Collections.BitArray.SyncRoot">
148       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.BitArray" />.</summary>
149       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.BitArray" />.</returns>
150     </member>
151     <member name="M:System.Collections.BitArray.Xor(System.Collections.BitArray)">
152       <summary>Performs the bitwise exclusive OR operation between the elements of the current <see cref="T:System.Collections.BitArray" /> object against the corresponding elements in the specified array. The current <see cref="T:System.Collections.BitArray" /> object will be modified to store the result of the bitwise exclusive OR operation.</summary>
153       <param name="value">The array with which to perform the bitwise exclusive OR operation.</param>
154       <returns>An array containing the result of the bitwise exclusive OR operation, which is a reference to the current <see cref="T:System.Collections.BitArray" /> object.</returns>
155       <exception cref="T:System.ArgumentNullException">
156         <paramref name="value" /> is <see langword="null" />.</exception>
157       <exception cref="T:System.ArgumentException">
158         <paramref name="value" /> and the current <see cref="T:System.Collections.BitArray" /> do not have the same number of elements.</exception>
159     </member>
160     <member name="T:System.Collections.Generic.CollectionExtensions" />
161     <member name="M:System.Collections.Generic.CollectionExtensions.GetValueOrDefault``2(System.Collections.Generic.IReadOnlyDictionary{``0,``1},``0)">
162       <param name="dictionary" />
163       <param name="key" />
164       <typeparam name="TKey" />
165       <typeparam name="TValue" />
166     </member>
167     <member name="M:System.Collections.Generic.CollectionExtensions.GetValueOrDefault``2(System.Collections.Generic.IReadOnlyDictionary{``0,``1},``0,``1)">
168       <param name="dictionary" />
169       <param name="key" />
170       <param name="defaultValue" />
171       <typeparam name="TKey" />
172       <typeparam name="TValue" />
173     </member>
174     <member name="M:System.Collections.Generic.CollectionExtensions.Remove``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1@)">
175       <param name="dictionary" />
176       <param name="key" />
177       <param name="value" />
178       <typeparam name="TKey" />
179       <typeparam name="TValue" />
180     </member>
181     <member name="M:System.Collections.Generic.CollectionExtensions.TryAdd``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1)">
182       <param name="dictionary" />
183       <param name="key" />
184       <param name="value" />
185       <typeparam name="TKey" />
186       <typeparam name="TValue" />
187     </member>
188     <member name="T:System.Collections.Generic.Comparer`1">
189       <summary>Provides a base class for implementations of the <see cref="T:System.Collections.Generic.IComparer`1" /> generic interface.</summary>
190       <typeparam name="T">The type of objects to compare.</typeparam>
191     </member>
192     <member name="M:System.Collections.Generic.Comparer`1.#ctor">
193       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Comparer`1" /> class.</summary>
194     </member>
195     <member name="M:System.Collections.Generic.Comparer`1.Compare(`0,`0)">
196       <summary>When overridden in a derived class, performs a comparison of two objects of the same type and returns a value indicating whether one object is less than, equal to, or greater than the other.</summary>
197       <param name="x">The first object to compare.</param>
198       <param name="y">The second object to compare.</param>
199       <returns>A signed integer that indicates the relative values of <paramref name="x" /> and <paramref name="y" />, as shown in the following table.
200   Value  
201   
202   Meaning  
203   
204   Less than zero  
205   
206  <paramref name="x" /> is less than <paramref name="y" />.  
207   
208   Zero  
209   
210  <paramref name="x" /> equals <paramref name="y" />.  
211   
212   Greater than zero  
213   
214  <paramref name="x" /> is greater than <paramref name="y" />.</returns>
215       <exception cref="T:System.ArgumentException">Type <paramref name="T" /> does not implement either the <see cref="T:System.IComparable`1" /> generic interface or the <see cref="T:System.IComparable" /> interface.</exception>
216     </member>
217     <member name="M:System.Collections.Generic.Comparer`1.Create(System.Comparison{`0})">
218       <summary>Creates a comparer by using the specified comparison.</summary>
219       <param name="comparison">The comparison to use.</param>
220       <returns>The new comparer.</returns>
221     </member>
222     <member name="P:System.Collections.Generic.Comparer`1.Default">
223       <summary>Returns a default sort order comparer for the type specified by the generic argument.</summary>
224       <returns>An object that inherits <see cref="T:System.Collections.Generic.Comparer`1" /> and serves as a sort order comparer for type <paramref name="T" />.</returns>
225     </member>
226     <member name="M:System.Collections.Generic.Comparer`1.System#Collections#IComparer#Compare(System.Object,System.Object)">
227       <summary>Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.</summary>
228       <param name="x">The first object to compare.</param>
229       <param name="y">The second object to compare.</param>
230       <returns>A signed integer that indicates the relative values of <paramref name="x" /> and <paramref name="y" />, as shown in the following table.
231   Value  
232   
233   Meaning  
234   
235   Less than zero  
236   
237  <paramref name="x" /> is less than <paramref name="y" />.  
238   
239   Zero  
240   
241  <paramref name="x" /> equals <paramref name="y" />.  
242   
243   Greater than zero  
244   
245  <paramref name="x" /> is greater than <paramref name="y" />.</returns>
246       <exception cref="T:System.ArgumentException">
247         <paramref name="x" /> or <paramref name="y" /> is of a type that cannot be cast to type <paramref name="T" />.
248 -or-
249 <paramref name="x" /> and <paramref name="y" /> do not implement either the <see cref="T:System.IComparable`1" /> generic interface or the <see cref="T:System.IComparable" /> interface.</exception>
250     </member>
251     <member name="T:System.Collections.Generic.Dictionary`2">
252       <summary>Represents a collection of keys and values.</summary>
253       <typeparam name="TKey">The type of the keys in the dictionary.</typeparam>
254       <typeparam name="TValue">The type of the values in the dictionary.</typeparam>
255     </member>
256     <member name="M:System.Collections.Generic.Dictionary`2.#ctor">
257       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class that is empty, has the default initial capacity, and uses the default equality comparer for the key type.</summary>
258     </member>
259     <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})">
260       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IDictionary`2" /> and uses the default equality comparer for the key type.</summary>
261       <param name="dictionary">The <see cref="T:System.Collections.Generic.IDictionary`2" /> whose elements are copied to the new <see cref="T:System.Collections.Generic.Dictionary`2" />.</param>
262       <exception cref="T:System.ArgumentNullException">
263         <paramref name="dictionary" /> is <see langword="null" />.</exception>
264       <exception cref="T:System.ArgumentException">
265         <paramref name="dictionary" /> contains one or more duplicate keys.</exception>
266     </member>
267     <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IEqualityComparer{`0})">
268       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IDictionary`2" /> and uses the specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" />.</summary>
269       <param name="dictionary">The <see cref="T:System.Collections.Generic.IDictionary`2" /> whose elements are copied to the new <see cref="T:System.Collections.Generic.Dictionary`2" />.</param>
270       <param name="comparer">The <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> implementation to use when comparing keys, or <see langword="null" /> to use the default <see cref="T:System.Collections.Generic.EqualityComparer`1" /> for the type of the key.</param>
271       <exception cref="T:System.ArgumentNullException">
272         <paramref name="dictionary" /> is <see langword="null" />.</exception>
273       <exception cref="T:System.ArgumentException">
274         <paramref name="dictionary" /> contains one or more duplicate keys.</exception>
275     </member>
276     <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
277       <param name="collection" />
278     </member>
279     <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}},System.Collections.Generic.IEqualityComparer{`0})">
280       <param name="collection" />
281       <param name="comparer" />
282     </member>
283     <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IEqualityComparer{`0})">
284       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class that is empty, has the default initial capacity, and uses the specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" />.</summary>
285       <param name="comparer">The <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> implementation to use when comparing keys, or <see langword="null" /> to use the default <see cref="T:System.Collections.Generic.EqualityComparer`1" /> for the type of the key.</param>
286     </member>
287     <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Int32)">
288       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class that is empty, has the specified initial capacity, and uses the default equality comparer for the key type.</summary>
289       <param name="capacity">The initial number of elements that the <see cref="T:System.Collections.Generic.Dictionary`2" /> can contain.</param>
290       <exception cref="T:System.ArgumentOutOfRangeException">
291         <paramref name="capacity" /> is less than 0.</exception>
292     </member>
293     <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
294       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class that is empty, has the specified initial capacity, and uses the specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" />.</summary>
295       <param name="capacity">The initial number of elements that the <see cref="T:System.Collections.Generic.Dictionary`2" /> can contain.</param>
296       <param name="comparer">The <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> implementation to use when comparing keys, or <see langword="null" /> to use the default <see cref="T:System.Collections.Generic.EqualityComparer`1" /> for the type of the key.</param>
297       <exception cref="T:System.ArgumentOutOfRangeException">
298         <paramref name="capacity" /> is less than 0.</exception>
299     </member>
300     <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
301       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2" /> class with serialized data.</summary>
302       <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object containing the information required to serialize the <see cref="T:System.Collections.Generic.Dictionary`2" />.</param>
303       <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure containing the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.Dictionary`2" />.</param>
304     </member>
305     <member name="M:System.Collections.Generic.Dictionary`2.Add(`0,`1)">
306       <summary>Adds the specified key and value to the dictionary.</summary>
307       <param name="key">The key of the element to add.</param>
308       <param name="value">The value of the element to add. The value can be <see langword="null" /> for reference types.</param>
309       <exception cref="T:System.ArgumentNullException">
310         <paramref name="key" /> is <see langword="null" />.</exception>
311       <exception cref="T:System.ArgumentException">An element with the same key already exists in the <see cref="T:System.Collections.Generic.Dictionary`2" />.</exception>
312     </member>
313     <member name="M:System.Collections.Generic.Dictionary`2.Clear">
314       <summary>Removes all keys and values from the <see cref="T:System.Collections.Generic.Dictionary`2" />.</summary>
315     </member>
316     <member name="P:System.Collections.Generic.Dictionary`2.Comparer">
317       <summary>Gets the <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> that is used to determine equality of keys for the dictionary.</summary>
318       <returns>The <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> generic interface implementation that is used to determine equality of keys for the current <see cref="T:System.Collections.Generic.Dictionary`2" /> and to provide hash values for the keys.</returns>
319     </member>
320     <member name="M:System.Collections.Generic.Dictionary`2.ContainsKey(`0)">
321       <summary>Determines whether the <see cref="T:System.Collections.Generic.Dictionary`2" /> contains the specified key.</summary>
322       <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.Dictionary`2" />.</param>
323       <returns>
324         <see langword="true" /> if the <see cref="T:System.Collections.Generic.Dictionary`2" /> contains an element with the specified key; otherwise, <see langword="false" />.</returns>
325       <exception cref="T:System.ArgumentNullException">
326         <paramref name="key" /> is <see langword="null" />.</exception>
327     </member>
328     <member name="M:System.Collections.Generic.Dictionary`2.ContainsValue(`1)">
329       <summary>Determines whether the <see cref="T:System.Collections.Generic.Dictionary`2" /> contains a specific value.</summary>
330       <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.Dictionary`2" />. The value can be <see langword="null" /> for reference types.</param>
331       <returns>
332         <see langword="true" /> if the <see cref="T:System.Collections.Generic.Dictionary`2" /> contains an element with the specified value; otherwise, <see langword="false" />.</returns>
333     </member>
334     <member name="P:System.Collections.Generic.Dictionary`2.Count">
335       <summary>Gets the number of key/value pairs contained in the <see cref="T:System.Collections.Generic.Dictionary`2" />.</summary>
336       <returns>The number of key/value pairs contained in the <see cref="T:System.Collections.Generic.Dictionary`2" />.</returns>
337     </member>
338     <member name="M:System.Collections.Generic.Dictionary`2.EnsureCapacity(System.Int32)">
339       <summary>Ensures that the dictionary can hold up to a specified number of entries without any further expansion of its backing storage.</summary>
340       <param name="capacity">The number of entries.</param>
341       <returns>The current capacity of the <see cref="T:System.Collections.Generic.Dictionary`2" />.</returns>
342       <exception cref="T:System.ArgumentOutOfRangeException">
343         <paramref name="capacity" /> is less than 0.</exception>
344     </member>
345     <member name="T:System.Collections.Generic.Dictionary`2.Enumerator">
346       <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.Dictionary`2" />.</summary>
347       <typeparam name="TKey" />
348       <typeparam name="TValue" />
349     </member>
350     <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.Current">
351       <summary>Gets the element at the current position of the enumerator.</summary>
352       <returns>The element in the <see cref="T:System.Collections.Generic.Dictionary`2" /> at the current position of the enumerator.</returns>
353     </member>
354     <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.Dispose">
355       <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.Dictionary`2.Enumerator" />.</summary>
356     </member>
357     <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.MoveNext">
358       <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.Dictionary`2" />.</summary>
359       <returns>
360         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
361       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
362     </member>
363     <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Entry">
364       <summary>Gets the element at the current position of the enumerator.</summary>
365       <returns>The element in the dictionary at the current position of the enumerator, as a <see cref="T:System.Collections.DictionaryEntry" />.</returns>
366       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
367     </member>
368     <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Key">
369       <summary>Gets the key of the element at the current position of the enumerator.</summary>
370       <returns>The key of the element in the dictionary at the current position of the enumerator.</returns>
371       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
372     </member>
373     <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Value">
374       <summary>Gets the value of the element at the current position of the enumerator.</summary>
375       <returns>The value of the element in the dictionary at the current position of the enumerator.</returns>
376       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
377     </member>
378     <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IEnumerator#Current">
379       <summary>Gets the element at the current position of the enumerator.</summary>
380       <returns>The element in the collection at the current position of the enumerator, as an <see cref="T:System.Object" />.</returns>
381       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
382     </member>
383     <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IEnumerator#Reset">
384       <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
385       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
386     </member>
387     <member name="M:System.Collections.Generic.Dictionary`2.GetEnumerator">
388       <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.Dictionary`2" />.</summary>
389       <returns>A <see cref="T:System.Collections.Generic.Dictionary`2.Enumerator" /> structure for the <see cref="T:System.Collections.Generic.Dictionary`2" />.</returns>
390     </member>
391     <member name="M:System.Collections.Generic.Dictionary`2.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
392       <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and returns the data needed to serialize the <see cref="T:System.Collections.Generic.Dictionary`2" /> instance.</summary>
393       <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information required to serialize the <see cref="T:System.Collections.Generic.Dictionary`2" /> instance.</param>
394       <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.Dictionary`2" /> instance.</param>
395       <exception cref="T:System.ArgumentNullException">
396         <paramref name="info" /> is <see langword="null" />.</exception>
397     </member>
398     <member name="P:System.Collections.Generic.Dictionary`2.Item(`0)">
399       <summary>Gets or sets the value associated with the specified key.</summary>
400       <param name="key">The key of the value to get or set.</param>
401       <returns>The value associated with the specified key. If the specified key is not found, a get operation throws a <see cref="T:System.Collections.Generic.KeyNotFoundException" />, and a set operation creates a new element with the specified key.</returns>
402       <exception cref="T:System.ArgumentNullException">
403         <paramref name="key" /> is <see langword="null" />.</exception>
404       <exception cref="T:System.Collections.Generic.KeyNotFoundException">The property is retrieved and <paramref name="key" /> does not exist in the collection.</exception>
405     </member>
406     <member name="T:System.Collections.Generic.Dictionary`2.KeyCollection">
407       <summary>Represents the collection of keys in a <see cref="T:System.Collections.Generic.Dictionary`2" />. This class cannot be inherited.</summary>
408       <typeparam name="TKey" />
409       <typeparam name="TValue" />
410     </member>
411     <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.#ctor(System.Collections.Generic.Dictionary{`0,`1})">
412       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> class that reflects the keys in the specified <see cref="T:System.Collections.Generic.Dictionary`2" />.</summary>
413       <param name="dictionary">The <see cref="T:System.Collections.Generic.Dictionary`2" /> whose keys are reflected in the new <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />.</param>
414       <exception cref="T:System.ArgumentNullException">
415         <paramref name="dictionary" /> is <see langword="null" />.</exception>
416     </member>
417     <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.CopyTo(`0[],System.Int32)">
418       <summary>Copies the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> elements to an existing one-dimensional <see cref="T:System.Array" />, starting at the specified array index.</summary>
419       <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.Dictionary`2.KeyCollection" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
420       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
421       <exception cref="T:System.ArgumentNullException">
422         <paramref name="array" /> is <see langword="null" />.</exception>
423       <exception cref="T:System.ArgumentOutOfRangeException">
424         <paramref name="index" /> is less than zero.</exception>
425       <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
426     </member>
427     <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Count">
428       <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />.</summary>
429       <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />.
430 Retrieving the value of this property is an O(1) operation.</returns>
431     </member>
432     <member name="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator">
433       <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />.</summary>
434       <typeparam name="TKey" />
435       <typeparam name="TValue" />
436     </member>
437     <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.Current">
438       <summary>Gets the element at the current position of the enumerator.</summary>
439       <returns>The element in the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> at the current position of the enumerator.</returns>
440     </member>
441     <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.Dispose">
442       <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator" />.</summary>
443     </member>
444     <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.MoveNext">
445       <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />.</summary>
446       <returns>
447         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
448       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
449     </member>
450     <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Current">
451       <summary>Gets the element at the current position of the enumerator.</summary>
452       <returns>The element in the collection at the current position of the enumerator.</returns>
453       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
454     </member>
455     <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Reset">
456       <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
457       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
458     </member>
459     <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.GetEnumerator">
460       <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />.</summary>
461       <returns>A <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator" /> for the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />.</returns>
462     </member>
463     <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#Add(`0)">
464       <summary>Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1" />. This implementation always throws <see cref="T:System.NotSupportedException" />.</summary>
465       <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
466       <exception cref="T:System.NotSupportedException">Always thrown.</exception>
467     </member>
468     <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#Clear">
469       <summary>Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1" />. This implementation always throws <see cref="T:System.NotSupportedException" />.</summary>
470       <exception cref="T:System.NotSupportedException">Always thrown.</exception>
471     </member>
472     <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#Contains(`0)">
473       <summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific value.</summary>
474       <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
475       <returns>
476         <see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
477     </member>
478     <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#IsReadOnly">
479       <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
480       <returns>
481         <see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />, this property always returns <see langword="true" />.</returns>
482     </member>
483     <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#Remove(`0)">
484       <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1" />. This implementation always throws <see cref="T:System.NotSupportedException" />.</summary>
485       <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
486       <returns>
487         <see langword="true" /> if <paramref name="item" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if item was not found in the original <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
488       <exception cref="T:System.NotSupportedException">Always thrown.</exception>
489     </member>
490     <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#IEnumerable{TKey}#GetEnumerator">
491       <summary>Returns an enumerator that iterates through a collection.</summary>
492       <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.</returns>
493     </member>
494     <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
495       <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
496       <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" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
497       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
498       <exception cref="T:System.ArgumentNullException">
499         <paramref name="array" /> is <see langword="null" />.</exception>
500       <exception cref="T:System.ArgumentOutOfRangeException">
501         <paramref name="index" /> is less than zero.</exception>
502       <exception cref="T:System.ArgumentException">
503         <paramref name="array" /> is multidimensional.
504 -or-
505 <paramref name="array" /> does not have zero-based indexing.
506 -or-
507 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" />.
508 -or-
509 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>
510     </member>
511     <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#IsSynchronized">
512       <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
513       <returns>
514         <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />, this property always returns <see langword="false" />.</returns>
515     </member>
516     <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#SyncRoot">
517       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
518       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.  In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />, this property always returns the current instance.</returns>
519     </member>
520     <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#IEnumerable#GetEnumerator">
521       <summary>Returns an enumerator that iterates through a collection.</summary>
522       <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
523     </member>
524     <member name="P:System.Collections.Generic.Dictionary`2.Keys">
525       <summary>Gets a collection containing the keys in the <see cref="T:System.Collections.Generic.Dictionary`2" />.</summary>
526       <returns>A <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> containing the keys in the <see cref="T:System.Collections.Generic.Dictionary`2" />.</returns>
527     </member>
528     <member name="M:System.Collections.Generic.Dictionary`2.OnDeserialization(System.Object)">
529       <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and raises the deserialization event when the deserialization is complete.</summary>
530       <param name="sender">The source of the deserialization event.</param>
531       <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Generic.Dictionary`2" /> instance is invalid.</exception>
532     </member>
533     <member name="M:System.Collections.Generic.Dictionary`2.Remove(`0)">
534       <summary>Removes the value with the specified key from the <see cref="T:System.Collections.Generic.Dictionary`2" />.</summary>
535       <param name="key">The key of the element to remove.</param>
536       <returns>
537         <see langword="true" /> if the element is successfully found and removed; otherwise, <see langword="false" />.  This method returns <see langword="false" /> if <paramref name="key" /> is not found in the <see cref="T:System.Collections.Generic.Dictionary`2" />.</returns>
538       <exception cref="T:System.ArgumentNullException">
539         <paramref name="key" /> is <see langword="null" />.</exception>
540     </member>
541     <member name="M:System.Collections.Generic.Dictionary`2.Remove(`0,`1@)">
542       <param name="key" />
543       <param name="value" />
544     </member>
545     <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
546       <summary>Adds the specified value to the <see cref="T:System.Collections.Generic.ICollection`1" /> with the specified key.</summary>
547       <param name="keyValuePair">The <see cref="T:System.Collections.Generic.KeyValuePair`2" /> structure representing the key and value to add to the <see cref="T:System.Collections.Generic.Dictionary`2" />.</param>
548       <exception cref="T:System.ArgumentNullException">The key of <paramref name="keyValuePair" /> is <see langword="null" />.</exception>
549       <exception cref="T:System.ArgumentException">An element with the same key already exists in the <see cref="T:System.Collections.Generic.Dictionary`2" />.</exception>
550     </member>
551     <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
552       <summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific key and value.</summary>
553       <param name="keyValuePair">The <see cref="T:System.Collections.Generic.KeyValuePair`2" /> structure to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
554       <returns>
555         <see langword="true" /> if <paramref name="keyValuePair" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
556     </member>
557     <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
558       <summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an array of type <see cref="T:System.Collections.Generic.KeyValuePair`2" />, starting at the specified array index.</summary>
559       <param name="array">The one-dimensional array of type <see cref="T:System.Collections.Generic.KeyValuePair`2" /> that is the destination of the <see cref="T:System.Collections.Generic.KeyValuePair`2" /> elements copied from the <see cref="T:System.Collections.Generic.ICollection`1" />. The array must have zero-based indexing.</param>
560       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
561       <exception cref="T:System.ArgumentNullException">
562         <paramref name="array" /> is <see langword="null" />.</exception>
563       <exception cref="T:System.ArgumentOutOfRangeException">
564         <paramref name="index" /> is less than 0.</exception>
565       <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
566     </member>
567     <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#IsReadOnly">
568       <summary>Gets a value that indicates whether the dictionary is read-only.</summary>
569       <returns>
570         <see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2" />, this property always returns <see langword="false" />.</returns>
571     </member>
572     <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
573       <summary>Removes a key and value from the dictionary.</summary>
574       <param name="keyValuePair">The <see cref="T:System.Collections.Generic.KeyValuePair`2" /> structure representing the key and value to remove from the <see cref="T:System.Collections.Generic.Dictionary`2" />.</param>
575       <returns>
576         <see langword="true" /> if the key and value represented by <paramref name="keyValuePair" /> is successfully found and removed; otherwise, <see langword="false" />. This method returns <see langword="false" /> if <paramref name="keyValuePair" /> is not found in the <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
577     </member>
578     <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
579       <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
580       <returns>An <see cref="T:System.Collections.Generic.ICollection`1" /> of type <paramref name="TKey" /> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
581     </member>
582     <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
583       <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
584       <returns>An <see cref="T:System.Collections.Generic.ICollection`1" /> of type <paramref name="TValue" /> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
585     </member>
586     <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{TKey@TValue}}#GetEnumerator">
587       <summary>Returns an enumerator that iterates through the collection.</summary>
588       <returns>An enumerator that can be used to iterate through the collection.</returns>
589     </member>
590     <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Keys">
591       <summary>Gets a collection containing the keys of the <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" />.</summary>
592       <returns>A collection containing the keys of the <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" />.</returns>
593     </member>
594     <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Values">
595       <summary>Gets a collection containing the values of the <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" />.</summary>
596       <returns>A collection containing the values of the <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" />.</returns>
597     </member>
598     <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
599       <summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an array, starting at the specified array index.</summary>
600       <param name="array">The one-dimensional array that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1" />. The array must have zero-based indexing.</param>
601       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
602       <exception cref="T:System.ArgumentNullException">
603         <paramref name="array" /> is <see langword="null" />.</exception>
604       <exception cref="T:System.ArgumentOutOfRangeException">
605         <paramref name="index" /> is less than 0.</exception>
606       <exception cref="T:System.ArgumentException">
607         <paramref name="array" /> is multidimensional.
608 -or-
609 <paramref name="array" /> does not have zero-based indexing.
610 -or-
611 The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.
612 -or-
613 The type of the source <see cref="T:System.Collections.Generic.ICollection`1" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
614     </member>
615     <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#IsSynchronized">
616       <summary>Gets a value that indicates whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
617       <returns>
618         <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2" />, this property always returns <see langword="false" />.</returns>
619     </member>
620     <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#SyncRoot">
621       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
622       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</returns>
623     </member>
624     <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
625       <summary>Adds the specified key and value to the dictionary.</summary>
626       <param name="key">The object to use as the key.</param>
627       <param name="value">The object to use as the value.</param>
628       <exception cref="T:System.ArgumentNullException">
629         <paramref name="key" /> is <see langword="null" />.</exception>
630       <exception cref="T:System.ArgumentException">
631         <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.Dictionary`2" />.
632 -or-
633 <paramref name="value" /> is of a type that is not assignable to <paramref name="TValue" />, the type of values in the <see cref="T:System.Collections.Generic.Dictionary`2" />.
634 -or-
635 A value with the same key already exists in the <see cref="T:System.Collections.Generic.Dictionary`2" />.</exception>
636     </member>
637     <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Contains(System.Object)">
638       <summary>Determines whether the <see cref="T:System.Collections.IDictionary" /> contains an element with the specified key.</summary>
639       <param name="key">The key to locate in the <see cref="T:System.Collections.IDictionary" />.</param>
640       <returns>
641         <see langword="true" /> if the <see cref="T:System.Collections.IDictionary" /> contains an element with the specified key; otherwise, <see langword="false" />.</returns>
642       <exception cref="T:System.ArgumentNullException">
643         <paramref name="key" /> is <see langword="null" />.</exception>
644     </member>
645     <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#GetEnumerator">
646       <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.IDictionary" />.</summary>
647       <returns>An <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.IDictionary" />.</returns>
648     </member>
649     <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#IsFixedSize">
650       <summary>Gets a value that indicates whether the <see cref="T:System.Collections.IDictionary" /> has a fixed size.</summary>
651       <returns>
652         <see langword="true" /> if the <see cref="T:System.Collections.IDictionary" /> has a fixed size; otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2" />, this property always returns <see langword="false" />.</returns>
653     </member>
654     <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#IsReadOnly">
655       <summary>Gets a value that indicates whether the <see cref="T:System.Collections.IDictionary" /> is read-only.</summary>
656       <returns>
657         <see langword="true" /> if the <see cref="T:System.Collections.IDictionary" /> is read-only; otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2" />, this property always returns <see langword="false" />.</returns>
658     </member>
659     <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Item(System.Object)">
660       <summary>Gets or sets the value with the specified key.</summary>
661       <param name="key">The key of the value to get.</param>
662       <returns>The value associated with the specified key, or <see langword="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.Dictionary`2" />.</returns>
663       <exception cref="T:System.ArgumentNullException">
664         <paramref name="key" /> is <see langword="null" />.</exception>
665       <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.Dictionary`2" />.
666 -or-
667 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.Dictionary`2" />.</exception>
668     </member>
669     <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Keys">
670       <summary>Gets an <see cref="T:System.Collections.ICollection" /> containing the keys of the <see cref="T:System.Collections.IDictionary" />.</summary>
671       <returns>An <see cref="T:System.Collections.ICollection" /> containing the keys of the <see cref="T:System.Collections.IDictionary" />.</returns>
672     </member>
673     <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Remove(System.Object)">
674       <summary>Removes the element with the specified key from the <see cref="T:System.Collections.IDictionary" />.</summary>
675       <param name="key">The key of the element to remove.</param>
676       <exception cref="T:System.ArgumentNullException">
677         <paramref name="key" /> is <see langword="null" />.</exception>
678     </member>
679     <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Values">
680       <summary>Gets an <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.IDictionary" />.</summary>
681       <returns>An <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.IDictionary" />.</returns>
682     </member>
683     <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IEnumerable#GetEnumerator">
684       <summary>Returns an enumerator that iterates through the collection.</summary>
685       <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
686     </member>
687     <member name="M:System.Collections.Generic.Dictionary`2.TrimExcess">
688       <summary>Sets the capacity of this dictionary to what it would be if it had been originally initialized with all its entries.</summary>
689     </member>
690     <member name="M:System.Collections.Generic.Dictionary`2.TrimExcess(System.Int32)">
691       <summary>Sets the capacity of this dictionary to hold up a specified number of entries without any further expansion of its backing storage.</summary>
692       <param name="capacity">The new capacity.</param>
693       <exception cref="T:System.ArgumentOutOfRangeException">
694         <paramref name="capacity" /> is less than <see cref="T:System.Collections.Generic.Dictionary`2" />.</exception>
695     </member>
696     <member name="M:System.Collections.Generic.Dictionary`2.TryAdd(`0,`1)">
697       <summary>Attempts to add the specified key and value to the dictionary.</summary>
698       <param name="key">The key of the element to add.</param>
699       <param name="value">The value of the element to add. It can be <see langword="null" />.</param>
700       <returns>
701         <see langword="true" /> if the key/value pair was added to the dictionary successfully; otherwise, <see langword="false" />.</returns>
702       <exception cref="T:System.ArgumentNullException">
703         <paramref name="key" /> is <see langword="null" />.</exception>
704     </member>
705     <member name="M:System.Collections.Generic.Dictionary`2.TryGetValue(`0,`1@)">
706       <summary>Gets the value associated with the specified key.</summary>
707       <param name="key">The key of the value to get.</param>
708       <param name="value">When this method returns, contains the value associated with the specified key, if the key is found; otherwise, the default value for the type of the <paramref name="value" /> parameter. This parameter is passed uninitialized.</param>
709       <returns>
710         <see langword="true" /> if the <see cref="T:System.Collections.Generic.Dictionary`2" /> contains an element with the specified key; otherwise, <see langword="false" />.</returns>
711       <exception cref="T:System.ArgumentNullException">
712         <paramref name="key" /> is <see langword="null" />.</exception>
713     </member>
714     <member name="T:System.Collections.Generic.Dictionary`2.ValueCollection">
715       <summary>Represents the collection of values in a <see cref="T:System.Collections.Generic.Dictionary`2" />. This class cannot be inherited.</summary>
716       <typeparam name="TKey" />
717       <typeparam name="TValue" />
718     </member>
719     <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.#ctor(System.Collections.Generic.Dictionary{`0,`1})">
720       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> class that reflects the values in the specified <see cref="T:System.Collections.Generic.Dictionary`2" />.</summary>
721       <param name="dictionary">The <see cref="T:System.Collections.Generic.Dictionary`2" /> whose values are reflected in the new <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />.</param>
722       <exception cref="T:System.ArgumentNullException">
723         <paramref name="dictionary" /> is <see langword="null" />.</exception>
724     </member>
725     <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.CopyTo(`1[],System.Int32)">
726       <summary>Copies the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> elements to an existing one-dimensional <see cref="T:System.Array" />, starting at the specified array index.</summary>
727       <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.Dictionary`2.ValueCollection" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
728       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
729       <exception cref="T:System.ArgumentNullException">
730         <paramref name="array" /> is <see langword="null" />.</exception>
731       <exception cref="T:System.ArgumentOutOfRangeException">
732         <paramref name="index" /> is less than zero.</exception>
733       <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
734     </member>
735     <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Count">
736       <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />.</summary>
737       <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />.</returns>
738     </member>
739     <member name="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator">
740       <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />.</summary>
741       <typeparam name="TKey" />
742       <typeparam name="TValue" />
743     </member>
744     <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.Current">
745       <summary>Gets the element at the current position of the enumerator.</summary>
746       <returns>The element in the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> at the current position of the enumerator.</returns>
747     </member>
748     <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.Dispose">
749       <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator" />.</summary>
750     </member>
751     <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.MoveNext">
752       <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />.</summary>
753       <returns>
754         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
755       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
756     </member>
757     <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Current">
758       <summary>Gets the element at the current position of the enumerator.</summary>
759       <returns>The element in the collection at the current position of the enumerator.</returns>
760       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
761     </member>
762     <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Reset">
763       <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
764       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
765     </member>
766     <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.GetEnumerator">
767       <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />.</summary>
768       <returns>A <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator" /> for the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />.</returns>
769     </member>
770     <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#Add(`1)">
771       <summary>Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1" />.  This implementation always throws <see cref="T:System.NotSupportedException" />.</summary>
772       <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
773       <exception cref="T:System.NotSupportedException">Always thrown.</exception>
774     </member>
775     <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#Clear">
776       <summary>Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1" />.  This implementation always throws <see cref="T:System.NotSupportedException" />.</summary>
777       <exception cref="T:System.NotSupportedException">Always thrown.</exception>
778     </member>
779     <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#Contains(`1)">
780       <summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific value.</summary>
781       <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
782       <returns>
783         <see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
784     </member>
785     <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#IsReadOnly">
786       <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
787       <returns>
788         <see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />, this property always returns <see langword="true" />.</returns>
789     </member>
790     <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#Remove(`1)">
791       <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1" />. This implementation always throws <see cref="T:System.NotSupportedException" />.</summary>
792       <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
793       <returns>
794         <see langword="true" /> if <paramref name="item" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="item" /> was not found in the original <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
795       <exception cref="T:System.NotSupportedException">Always thrown.</exception>
796     </member>
797     <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#IEnumerable{TValue}#GetEnumerator">
798       <summary>Returns an enumerator that iterates through a collection.</summary>
799       <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.</returns>
800     </member>
801     <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
802       <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
803       <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" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
804       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
805       <exception cref="T:System.ArgumentNullException">
806         <paramref name="array" /> is <see langword="null" />.</exception>
807       <exception cref="T:System.ArgumentOutOfRangeException">
808         <paramref name="index" /> is less than zero.</exception>
809       <exception cref="T:System.ArgumentException">
810         <paramref name="array" /> is multidimensional.
811 -or-
812 <paramref name="array" /> does not have zero-based indexing.
813 -or-
814 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" />.
815 -or-
816 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>
817     </member>
818     <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#IsSynchronized">
819       <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
820       <returns>
821         <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />, this property always returns <see langword="false" />.</returns>
822     </member>
823     <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#SyncRoot">
824       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
825       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.  In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />, this property always returns the current instance.</returns>
826     </member>
827     <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#IEnumerable#GetEnumerator">
828       <summary>Returns an enumerator that iterates through a collection.</summary>
829       <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
830     </member>
831     <member name="P:System.Collections.Generic.Dictionary`2.Values">
832       <summary>Gets a collection containing the values in the <see cref="T:System.Collections.Generic.Dictionary`2" />.</summary>
833       <returns>A <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> containing the values in the <see cref="T:System.Collections.Generic.Dictionary`2" />.</returns>
834     </member>
835     <member name="T:System.Collections.Generic.EqualityComparer`1">
836       <summary>Provides a base class for implementations of the <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> generic interface.</summary>
837       <typeparam name="T">The type of objects to compare.</typeparam>
838     </member>
839     <member name="M:System.Collections.Generic.EqualityComparer`1.#ctor">
840       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.EqualityComparer`1" /> class.</summary>
841     </member>
842     <member name="P:System.Collections.Generic.EqualityComparer`1.Default">
843       <summary>Returns a default equality comparer for the type specified by the generic argument.</summary>
844       <returns>The default instance of the <see cref="T:System.Collections.Generic.EqualityComparer`1" /> class for type <typeparamref name="T" />.</returns>
845     </member>
846     <member name="M:System.Collections.Generic.EqualityComparer`1.Equals(`0,`0)">
847       <summary>When overridden in a derived class, determines whether two objects of type <typeparamref name="T" /> are equal.</summary>
848       <param name="x">The first object to compare.</param>
849       <param name="y">The second object to compare.</param>
850       <returns>
851         <see langword="true" /> if the specified objects are equal; otherwise, <see langword="false" />.</returns>
852     </member>
853     <member name="M:System.Collections.Generic.EqualityComparer`1.GetHashCode(`0)">
854       <summary>When overridden in a derived class, serves as a hash function for the specified object for hashing algorithms and data structures, such as a hash table.</summary>
855       <param name="obj">The object for which to get a hash code.</param>
856       <returns>A hash code for the specified object.</returns>
857       <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is <see langword="null" />.</exception>
858     </member>
859     <member name="M:System.Collections.Generic.EqualityComparer`1.System#Collections#IEqualityComparer#Equals(System.Object,System.Object)">
860       <summary>Determines whether the specified objects are equal.</summary>
861       <param name="x">The first object to compare.</param>
862       <param name="y">The second object to compare.</param>
863       <returns>
864         <see langword="true" /> if the specified objects are equal; otherwise, <see langword="false" />.</returns>
865       <exception cref="T:System.ArgumentException">
866         <paramref name="x" /> or <paramref name="y" /> is of a type that cannot be cast to type <typeparamref name="T" />.</exception>
867     </member>
868     <member name="M:System.Collections.Generic.EqualityComparer`1.System#Collections#IEqualityComparer#GetHashCode(System.Object)">
869       <summary>Returns a hash code for the specified object.</summary>
870       <param name="obj">The <see cref="T:System.Object" /> for which a hash code is to be returned.</param>
871       <returns>A hash code for the specified object.</returns>
872       <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is <see langword="null" />.
873 -or-
874 <paramref name="obj" /> is of a type that cannot be cast to type <typeparamref name="T" />.</exception>
875     </member>
876     <member name="T:System.Collections.Generic.HashSet`1">
877       <summary>Represents a set of values.</summary>
878       <typeparam name="T">The type of elements in the hash set.</typeparam>
879     </member>
880     <member name="M:System.Collections.Generic.HashSet`1.#ctor">
881       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.HashSet`1" /> class that is empty and uses the default equality comparer for the set type.</summary>
882     </member>
883     <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
884       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.HashSet`1" /> class that uses the default equality comparer for the set type, contains elements copied from the specified collection, and has sufficient capacity to accommodate the number of elements copied.</summary>
885       <param name="collection">The collection whose elements are copied to the new set.</param>
886       <exception cref="T:System.ArgumentNullException">
887         <paramref name="collection" /> is <see langword="null" />.</exception>
888     </member>
889     <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0})">
890       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.HashSet`1" /> class that uses the specified equality comparer for the set type, contains elements copied from the specified collection, and has sufficient capacity to accommodate the number of elements copied.</summary>
891       <param name="collection">The collection whose elements are copied to the new set.</param>
892       <param name="comparer">The <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> implementation to use when comparing values in the set, or <see langword="null" /> to use the default <see cref="T:System.Collections.Generic.EqualityComparer`1" /> implementation for the set type.</param>
893       <exception cref="T:System.ArgumentNullException">
894         <paramref name="collection" /> is <see langword="null" />.</exception>
895     </member>
896     <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEqualityComparer{`0})">
897       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.HashSet`1" /> class that is empty and uses the specified equality comparer for the set type.</summary>
898       <param name="comparer">The <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> implementation to use when comparing values in the set, or <see langword="null" /> to use the default <see cref="T:System.Collections.Generic.EqualityComparer`1" /> implementation for the set type.</param>
899     </member>
900     <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Int32)">
901       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.HashSet`1" /> class that is empty, but has reserved space for <paramref name="capacity" /> items and uses the default equality comparer for the set type.</summary>
902       <param name="capacity">The initial size of the <see cref="T:System.Collections.Generic.HashSet`1" /></param>
903     </member>
904     <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
905       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.HashSet`1" /> class that uses the specified equality comparer for the set type, and has sufficient capacity to accommodate <paramref name="capacity" /> elements.</summary>
906       <param name="capacity">The initial size of the <see cref="T:System.Collections.Generic.HashSet`1" /></param>
907       <param name="comparer">The <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> implementation to use when comparing values in the set, or null (Nothing in Visual Basic) to use the default <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> implementation for the set type.</param>
908     </member>
909     <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
910       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.HashSet`1" /> class with serialized data.</summary>
911       <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information required to serialize the <see cref="T:System.Collections.Generic.HashSet`1" /> object.</param>
912       <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.HashSet`1" /> object.</param>
913     </member>
914     <member name="M:System.Collections.Generic.HashSet`1.Add(`0)">
915       <summary>Adds the specified element to a set.</summary>
916       <param name="item">The element to add to the set.</param>
917       <returns>
918         <see langword="true" /> if the element is added to the <see cref="T:System.Collections.Generic.HashSet`1" /> object; <see langword="false" /> if the element is already present.</returns>
919     </member>
920     <member name="M:System.Collections.Generic.HashSet`1.Clear">
921       <summary>Removes all elements from a <see cref="T:System.Collections.Generic.HashSet`1" /> object.</summary>
922     </member>
923     <member name="P:System.Collections.Generic.HashSet`1.Comparer">
924       <summary>Gets the <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> object that is used to determine equality for the values in the set.</summary>
925       <returns>The <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> object that is used to determine equality for the values in the set.</returns>
926     </member>
927     <member name="M:System.Collections.Generic.HashSet`1.Contains(`0)">
928       <summary>Determines whether a <see cref="T:System.Collections.Generic.HashSet`1" /> object contains the specified element.</summary>
929       <param name="item">The element to locate in the <see cref="T:System.Collections.Generic.HashSet`1" /> object.</param>
930       <returns>
931         <see langword="true" /> if the <see cref="T:System.Collections.Generic.HashSet`1" /> object contains the specified element; otherwise, <see langword="false" />.</returns>
932     </member>
933     <member name="M:System.Collections.Generic.HashSet`1.CopyTo(`0[])">
934       <summary>Copies the elements of a <see cref="T:System.Collections.Generic.HashSet`1" /> object to an array.</summary>
935       <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.HashSet`1" /> object. The array must have zero-based indexing.</param>
936       <exception cref="T:System.ArgumentNullException">
937         <paramref name="array" /> is <see langword="null" />.</exception>
938     </member>
939     <member name="M:System.Collections.Generic.HashSet`1.CopyTo(`0[],System.Int32)">
940       <summary>Copies the elements of a <see cref="T:System.Collections.Generic.HashSet`1" /> object to an array, starting at the specified array index.</summary>
941       <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.HashSet`1" /> object. The array must have zero-based indexing.</param>
942       <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
943       <exception cref="T:System.ArgumentNullException">
944         <paramref name="array" /> is <see langword="null" />.</exception>
945       <exception cref="T:System.ArgumentOutOfRangeException">
946         <paramref name="arrayIndex" /> is less than 0.</exception>
947       <exception cref="T:System.ArgumentException">
948         <paramref name="arrayIndex" /> is greater than the length of the destination <paramref name="array" />.</exception>
949     </member>
950     <member name="M:System.Collections.Generic.HashSet`1.CopyTo(`0[],System.Int32,System.Int32)">
951       <summary>Copies the specified number of elements of a <see cref="T:System.Collections.Generic.HashSet`1" /> object to an array, starting at the specified array index.</summary>
952       <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.HashSet`1" /> object. The array must have zero-based indexing.</param>
953       <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
954       <param name="count">The number of elements to copy to <paramref name="array" />.</param>
955       <exception cref="T:System.ArgumentNullException">
956         <paramref name="array" /> is <see langword="null" />.</exception>
957       <exception cref="T:System.ArgumentOutOfRangeException">
958         <paramref name="arrayIndex" /> is less than 0.
959 -or-
960 <paramref name="count" /> is less than 0.</exception>
961       <exception cref="T:System.ArgumentException">
962         <paramref name="arrayIndex" /> is greater than the length of the destination <paramref name="array" />.
963 -or-
964 <paramref name="count" /> is greater than the available space from the <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
965     </member>
966     <member name="P:System.Collections.Generic.HashSet`1.Count">
967       <summary>Gets the number of elements that are contained in a set.</summary>
968       <returns>The number of elements that are contained in the set.</returns>
969     </member>
970     <member name="M:System.Collections.Generic.HashSet`1.CreateSetComparer">
971       <summary>Returns an <see cref="T:System.Collections.IEqualityComparer" /> object that can be used for equality testing of a <see cref="T:System.Collections.Generic.HashSet`1" /> object.</summary>
972       <returns>An <see cref="T:System.Collections.IEqualityComparer" /> object that can be used for deep equality testing of the <see cref="T:System.Collections.Generic.HashSet`1" /> object.</returns>
973     </member>
974     <member name="M:System.Collections.Generic.HashSet`1.EnsureCapacity(System.Int32)">
975       <summary>Ensures that this hash set can hold the specified number of elements without growing.</summary>
976       <param name="capacity">The minimum capacity to ensure.</param>
977       <returns>The new capacity of this instance.</returns>
978       <exception cref="T:System.ArgumentOutOfRangeException">
979         <paramref name="capacity" /> is less than zero.</exception>
980     </member>
981     <member name="T:System.Collections.Generic.HashSet`1.Enumerator">
982       <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.HashSet`1" /> object.</summary>
983       <typeparam name="T" />
984     </member>
985     <member name="P:System.Collections.Generic.HashSet`1.Enumerator.Current">
986       <summary>Gets the element at the current position of the enumerator.</summary>
987       <returns>The element in the <see cref="T:System.Collections.Generic.HashSet`1" /> collection at the current position of the enumerator.</returns>
988     </member>
989     <member name="M:System.Collections.Generic.HashSet`1.Enumerator.Dispose">
990       <summary>Releases all resources used by a <see cref="T:System.Collections.Generic.HashSet`1.Enumerator" /> object.</summary>
991     </member>
992     <member name="M:System.Collections.Generic.HashSet`1.Enumerator.MoveNext">
993       <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.HashSet`1" /> collection.</summary>
994       <returns>
995         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
996       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
997     </member>
998     <member name="P:System.Collections.Generic.HashSet`1.Enumerator.System#Collections#IEnumerator#Current">
999       <summary>Gets the element at the current position of the enumerator.</summary>
1000       <returns>The element in the collection at the current position of the enumerator, as an <see cref="T:System.Object" />.</returns>
1001       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
1002     </member>
1003     <member name="M:System.Collections.Generic.HashSet`1.Enumerator.System#Collections#IEnumerator#Reset">
1004       <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
1005       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
1006     </member>
1007     <member name="M:System.Collections.Generic.HashSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0})">
1008       <summary>Removes all elements in the specified collection from the current <see cref="T:System.Collections.Generic.HashSet`1" /> object.</summary>
1009       <param name="other">The collection of items to remove from the <see cref="T:System.Collections.Generic.HashSet`1" /> object.</param>
1010       <exception cref="T:System.ArgumentNullException">
1011         <paramref name="other" /> is <see langword="null" />.</exception>
1012     </member>
1013     <member name="M:System.Collections.Generic.HashSet`1.GetEnumerator">
1014       <summary>Returns an enumerator that iterates through a <see cref="T:System.Collections.Generic.HashSet`1" /> object.</summary>
1015       <returns>A <see cref="T:System.Collections.Generic.HashSet`1.Enumerator" /> object for the <see cref="T:System.Collections.Generic.HashSet`1" /> object.</returns>
1016     </member>
1017     <member name="M:System.Collections.Generic.HashSet`1.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1018       <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and returns the data needed to serialize a <see cref="T:System.Collections.Generic.HashSet`1" /> object.</summary>
1019       <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information required to serialize the <see cref="T:System.Collections.Generic.HashSet`1" /> object.</param>
1020       <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.HashSet`1" /> object.</param>
1021       <exception cref="T:System.ArgumentNullException">
1022         <paramref name="info" /> is <see langword="null" />.</exception>
1023     </member>
1024     <member name="M:System.Collections.Generic.HashSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0})">
1025       <summary>Modifies the current <see cref="T:System.Collections.Generic.HashSet`1" /> object to contain only elements that are present in that object and in the specified collection.</summary>
1026       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1" /> object.</param>
1027       <exception cref="T:System.ArgumentNullException">
1028         <paramref name="other" /> is <see langword="null" />.</exception>
1029     </member>
1030     <member name="M:System.Collections.Generic.HashSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
1031       <summary>Determines whether a <see cref="T:System.Collections.Generic.HashSet`1" /> object is a proper subset of the specified collection.</summary>
1032       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1" /> object.</param>
1033       <returns>
1034         <see langword="true" /> if the <see cref="T:System.Collections.Generic.HashSet`1" /> object is a proper subset of <paramref name="other" />; otherwise, <see langword="false" />.</returns>
1035       <exception cref="T:System.ArgumentNullException">
1036         <paramref name="other" /> is <see langword="null" />.</exception>
1037     </member>
1038     <member name="M:System.Collections.Generic.HashSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
1039       <summary>Determines whether a <see cref="T:System.Collections.Generic.HashSet`1" /> object is a proper superset of the specified collection.</summary>
1040       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1" /> object.</param>
1041       <returns>
1042         <see langword="true" /> if the <see cref="T:System.Collections.Generic.HashSet`1" /> object is a proper superset of <paramref name="other" />; otherwise, <see langword="false" />.</returns>
1043       <exception cref="T:System.ArgumentNullException">
1044         <paramref name="other" /> is <see langword="null" />.</exception>
1045     </member>
1046     <member name="M:System.Collections.Generic.HashSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
1047       <summary>Determines whether a <see cref="T:System.Collections.Generic.HashSet`1" /> object is a subset of the specified collection.</summary>
1048       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1" /> object.</param>
1049       <returns>
1050         <see langword="true" /> if the <see cref="T:System.Collections.Generic.HashSet`1" /> object is a subset of <paramref name="other" />; otherwise, <see langword="false" />.</returns>
1051       <exception cref="T:System.ArgumentNullException">
1052         <paramref name="other" /> is <see langword="null" />.</exception>
1053     </member>
1054     <member name="M:System.Collections.Generic.HashSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
1055       <summary>Determines whether a <see cref="T:System.Collections.Generic.HashSet`1" /> object is a superset of the specified collection.</summary>
1056       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1" /> object.</param>
1057       <returns>
1058         <see langword="true" /> if the <see cref="T:System.Collections.Generic.HashSet`1" /> object is a superset of <paramref name="other" />; otherwise, <see langword="false" />.</returns>
1059       <exception cref="T:System.ArgumentNullException">
1060         <paramref name="other" /> is <see langword="null" />.</exception>
1061     </member>
1062     <member name="M:System.Collections.Generic.HashSet`1.OnDeserialization(System.Object)">
1063       <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and raises the deserialization event when the deserialization is complete.</summary>
1064       <param name="sender">The source of the deserialization event.</param>
1065       <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Generic.HashSet`1" /> object is invalid.</exception>
1066     </member>
1067     <member name="M:System.Collections.Generic.HashSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
1068       <summary>Determines whether the current <see cref="T:System.Collections.Generic.HashSet`1" /> object and a specified collection share common elements.</summary>
1069       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1" /> object.</param>
1070       <returns>
1071         <see langword="true" /> if the <see cref="T:System.Collections.Generic.HashSet`1" /> object and <paramref name="other" /> share at least one common element; otherwise, <see langword="false" />.</returns>
1072       <exception cref="T:System.ArgumentNullException">
1073         <paramref name="other" /> is <see langword="null" />.</exception>
1074     </member>
1075     <member name="M:System.Collections.Generic.HashSet`1.Remove(`0)">
1076       <summary>Removes the specified element from a <see cref="T:System.Collections.Generic.HashSet`1" /> object.</summary>
1077       <param name="item">The element to remove.</param>
1078       <returns>
1079         <see langword="true" /> if the element is successfully found and removed; otherwise, <see langword="false" />.  This method returns <see langword="false" /> if <paramref name="item" /> is not found in the <see cref="T:System.Collections.Generic.HashSet`1" /> object.</returns>
1080     </member>
1081     <member name="M:System.Collections.Generic.HashSet`1.RemoveWhere(System.Predicate{`0})">
1082       <summary>Removes all elements that match the conditions defined by the specified predicate from a <see cref="T:System.Collections.Generic.HashSet`1" /> collection.</summary>
1083       <param name="match">The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the elements to remove.</param>
1084       <returns>The number of elements that were removed from the <see cref="T:System.Collections.Generic.HashSet`1" /> collection.</returns>
1085       <exception cref="T:System.ArgumentNullException">
1086         <paramref name="match" /> is <see langword="null" />.</exception>
1087     </member>
1088     <member name="M:System.Collections.Generic.HashSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
1089       <summary>Determines whether a <see cref="T:System.Collections.Generic.HashSet`1" /> object and the specified collection contain the same elements.</summary>
1090       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1" /> object.</param>
1091       <returns>
1092         <see langword="true" /> if the <see cref="T:System.Collections.Generic.HashSet`1" /> object is equal to <paramref name="other" />; otherwise, <see langword="false" />.</returns>
1093       <exception cref="T:System.ArgumentNullException">
1094         <paramref name="other" /> is <see langword="null" />.</exception>
1095     </member>
1096     <member name="M:System.Collections.Generic.HashSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
1097       <summary>Modifies the current <see cref="T:System.Collections.Generic.HashSet`1" /> object to contain only elements that are present either in that object or in the specified collection, but not both.</summary>
1098       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1" /> object.</param>
1099       <exception cref="T:System.ArgumentNullException">
1100         <paramref name="other" /> is <see langword="null" />.</exception>
1101     </member>
1102     <member name="M:System.Collections.Generic.HashSet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
1103       <summary>Adds an item to an <see cref="T:System.Collections.Generic.ICollection`1" /> object.</summary>
1104       <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1" /> object.</param>
1105       <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</exception>
1106     </member>
1107     <member name="P:System.Collections.Generic.HashSet`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
1108       <summary>Gets a value indicating whether a collection is read-only.</summary>
1109       <returns>
1110         <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
1111     </member>
1112     <member name="M:System.Collections.Generic.HashSet`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
1113       <summary>Returns an enumerator that iterates through a collection.</summary>
1114       <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> object that can be used to iterate through the collection.</returns>
1115     </member>
1116     <member name="M:System.Collections.Generic.HashSet`1.System#Collections#IEnumerable#GetEnumerator">
1117       <summary>Returns an enumerator that iterates through a collection.</summary>
1118       <returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
1119     </member>
1120     <member name="M:System.Collections.Generic.HashSet`1.TrimExcess">
1121       <summary>Sets the capacity of a <see cref="T:System.Collections.Generic.HashSet`1" /> object to the actual number of elements it contains, rounded up to a nearby, implementation-specific value.</summary>
1122     </member>
1123     <member name="M:System.Collections.Generic.HashSet`1.TryGetValue(`0,`0@)">
1124       <summary>Searches the set for a given value and returns the equal value it finds, if any.</summary>
1125       <param name="equalValue">The value to search for.</param>
1126       <param name="actualValue">The value from the set that the search found, or the default value of T when the search yielded no match.</param>
1127       <returns>A value indicating whether the search was successful.</returns>
1128     </member>
1129     <member name="M:System.Collections.Generic.HashSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0})">
1130       <summary>Modifies the current <see cref="T:System.Collections.Generic.HashSet`1" /> object to contain all elements that are present in itself, the specified collection, or both.</summary>
1131       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1" /> object.</param>
1132       <exception cref="T:System.ArgumentNullException">
1133         <paramref name="other" /> is <see langword="null" />.</exception>
1134     </member>
1135     <member name="T:System.Collections.Generic.LinkedList`1">
1136       <summary>Represents a doubly linked list.</summary>
1137       <typeparam name="T">Specifies the element type of the linked list.</typeparam>
1138     </member>
1139     <member name="M:System.Collections.Generic.LinkedList`1.#ctor">
1140       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.LinkedList`1" /> class that is empty.</summary>
1141     </member>
1142     <member name="M:System.Collections.Generic.LinkedList`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
1143       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.LinkedList`1" /> class that contains elements copied from the specified <see cref="T:System.Collections.IEnumerable" /> and has sufficient capacity to accommodate the number of elements copied.</summary>
1144       <param name="collection">The <see cref="T:System.Collections.IEnumerable" /> whose elements are copied to the new <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
1145       <exception cref="T:System.ArgumentNullException">
1146         <paramref name="collection" /> is <see langword="null" />.</exception>
1147     </member>
1148     <member name="M:System.Collections.Generic.LinkedList`1.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1149       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.LinkedList`1" /> class that is serializable with the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
1150       <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object containing the information required to serialize the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
1151       <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object containing the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
1152     </member>
1153     <member name="M:System.Collections.Generic.LinkedList`1.AddAfter(System.Collections.Generic.LinkedListNode{`0},`0)">
1154       <summary>Adds a new node containing the specified value after the specified existing node in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1155       <param name="node">The <see cref="T:System.Collections.Generic.LinkedListNode`1" /> after which to insert a new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> containing <paramref name="value" />.</param>
1156       <param name="value">The value to add to the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
1157       <returns>The new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> containing <paramref name="value" />.</returns>
1158       <exception cref="T:System.ArgumentNullException">
1159         <paramref name="node" /> is <see langword="null" />.</exception>
1160       <exception cref="T:System.InvalidOperationException">
1161         <paramref name="node" /> is not in the current <see cref="T:System.Collections.Generic.LinkedList`1" />.</exception>
1162     </member>
1163     <member name="M:System.Collections.Generic.LinkedList`1.AddAfter(System.Collections.Generic.LinkedListNode{`0},System.Collections.Generic.LinkedListNode{`0})">
1164       <summary>Adds the specified new node after the specified existing node in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1165       <param name="node">The <see cref="T:System.Collections.Generic.LinkedListNode`1" /> after which to insert <paramref name="newNode" />.</param>
1166       <param name="newNode">The new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> to add to the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
1167       <exception cref="T:System.ArgumentNullException">
1168         <paramref name="node" /> is <see langword="null" />.
1169 -or-
1170 <paramref name="newNode" /> is <see langword="null" />.</exception>
1171       <exception cref="T:System.InvalidOperationException">
1172         <paramref name="node" /> is not in the current <see cref="T:System.Collections.Generic.LinkedList`1" />.
1173 -or-
1174 <paramref name="newNode" /> belongs to another <see cref="T:System.Collections.Generic.LinkedList`1" />.</exception>
1175     </member>
1176     <member name="M:System.Collections.Generic.LinkedList`1.AddBefore(System.Collections.Generic.LinkedListNode{`0},`0)">
1177       <summary>Adds a new node containing the specified value before the specified existing node in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1178       <param name="node">The <see cref="T:System.Collections.Generic.LinkedListNode`1" /> before which to insert a new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> containing <paramref name="value" />.</param>
1179       <param name="value">The value to add to the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
1180       <returns>The new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> containing <paramref name="value" />.</returns>
1181       <exception cref="T:System.ArgumentNullException">
1182         <paramref name="node" /> is <see langword="null" />.</exception>
1183       <exception cref="T:System.InvalidOperationException">
1184         <paramref name="node" /> is not in the current <see cref="T:System.Collections.Generic.LinkedList`1" />.</exception>
1185     </member>
1186     <member name="M:System.Collections.Generic.LinkedList`1.AddBefore(System.Collections.Generic.LinkedListNode{`0},System.Collections.Generic.LinkedListNode{`0})">
1187       <summary>Adds the specified new node before the specified existing node in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1188       <param name="node">The <see cref="T:System.Collections.Generic.LinkedListNode`1" /> before which to insert <paramref name="newNode" />.</param>
1189       <param name="newNode">The new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> to add to the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
1190       <exception cref="T:System.ArgumentNullException">
1191         <paramref name="node" /> is <see langword="null" />.
1192 -or-
1193 <paramref name="newNode" /> is <see langword="null" />.</exception>
1194       <exception cref="T:System.InvalidOperationException">
1195         <paramref name="node" /> is not in the current <see cref="T:System.Collections.Generic.LinkedList`1" />.
1196 -or-
1197 <paramref name="newNode" /> belongs to another <see cref="T:System.Collections.Generic.LinkedList`1" />.</exception>
1198     </member>
1199     <member name="M:System.Collections.Generic.LinkedList`1.AddFirst(`0)">
1200       <summary>Adds a new node containing the specified value at the start of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1201       <param name="value">The value to add at the start of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
1202       <returns>The new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> containing <paramref name="value" />.</returns>
1203     </member>
1204     <member name="M:System.Collections.Generic.LinkedList`1.AddFirst(System.Collections.Generic.LinkedListNode{`0})">
1205       <summary>Adds the specified new node at the start of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1206       <param name="node">The new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> to add at the start of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
1207       <exception cref="T:System.ArgumentNullException">
1208         <paramref name="node" /> is <see langword="null" />.</exception>
1209       <exception cref="T:System.InvalidOperationException">
1210         <paramref name="node" /> belongs to another <see cref="T:System.Collections.Generic.LinkedList`1" />.</exception>
1211     </member>
1212     <member name="M:System.Collections.Generic.LinkedList`1.AddLast(`0)">
1213       <summary>Adds a new node containing the specified value at the end of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1214       <param name="value">The value to add at the end of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
1215       <returns>The new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> containing <paramref name="value" />.</returns>
1216     </member>
1217     <member name="M:System.Collections.Generic.LinkedList`1.AddLast(System.Collections.Generic.LinkedListNode{`0})">
1218       <summary>Adds the specified new node at the end of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1219       <param name="node">The new <see cref="T:System.Collections.Generic.LinkedListNode`1" /> to add at the end of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
1220       <exception cref="T:System.ArgumentNullException">
1221         <paramref name="node" /> is <see langword="null" />.</exception>
1222       <exception cref="T:System.InvalidOperationException">
1223         <paramref name="node" /> belongs to another <see cref="T:System.Collections.Generic.LinkedList`1" />.</exception>
1224     </member>
1225     <member name="M:System.Collections.Generic.LinkedList`1.Clear">
1226       <summary>Removes all nodes from the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1227     </member>
1228     <member name="M:System.Collections.Generic.LinkedList`1.Contains(`0)">
1229       <summary>Determines whether a value is in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1230       <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.LinkedList`1" />. The value can be <see langword="null" /> for reference types.</param>
1231       <returns>
1232         <see langword="true" /> if <paramref name="value" /> is found in the <see cref="T:System.Collections.Generic.LinkedList`1" />; otherwise, <see langword="false" />.</returns>
1233     </member>
1234     <member name="M:System.Collections.Generic.LinkedList`1.CopyTo(`0[],System.Int32)">
1235       <summary>Copies the entire <see cref="T:System.Collections.Generic.LinkedList`1" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array.</summary>
1236       <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.LinkedList`1" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
1237       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
1238       <exception cref="T:System.ArgumentNullException">
1239         <paramref name="array" /> is <see langword="null" />.</exception>
1240       <exception cref="T:System.ArgumentOutOfRangeException">
1241         <paramref name="index" /> is less than zero.</exception>
1242       <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.LinkedList`1" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
1243     </member>
1244     <member name="P:System.Collections.Generic.LinkedList`1.Count">
1245       <summary>Gets the number of nodes actually contained in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1246       <returns>The number of nodes actually contained in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</returns>
1247     </member>
1248     <member name="T:System.Collections.Generic.LinkedList`1.Enumerator">
1249       <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1250       <typeparam name="T" />
1251     </member>
1252     <member name="P:System.Collections.Generic.LinkedList`1.Enumerator.Current">
1253       <summary>Gets the element at the current position of the enumerator.</summary>
1254       <returns>The element in the <see cref="T:System.Collections.Generic.LinkedList`1" /> at the current position of the enumerator.</returns>
1255     </member>
1256     <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.Dispose">
1257       <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.LinkedList`1.Enumerator" />.</summary>
1258     </member>
1259     <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.MoveNext">
1260       <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1261       <returns>
1262         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
1263       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
1264     </member>
1265     <member name="P:System.Collections.Generic.LinkedList`1.Enumerator.System#Collections#IEnumerator#Current">
1266       <summary>Gets the element at the current position of the enumerator.</summary>
1267       <returns>The element in the collection at the current position of the enumerator.</returns>
1268       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
1269     </member>
1270     <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.System#Collections#IEnumerator#Reset">
1271       <summary>Sets the enumerator to its initial position, which is before the first element in the collection. This class cannot be inherited.</summary>
1272       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
1273     </member>
1274     <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)">
1275       <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and raises the deserialization event when the deserialization is complete.</summary>
1276       <param name="sender">The source of the deserialization event.</param>
1277       <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Generic.LinkedList`1" /> instance is invalid.</exception>
1278     </member>
1279     <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1280       <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and returns the data needed to serialize the <see cref="T:System.Collections.Generic.LinkedList`1" /> instance.</summary>
1281       <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information required to serialize the <see cref="T:System.Collections.Generic.LinkedList`1" /> instance.</param>
1282       <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.LinkedList`1" /> instance.</param>
1283       <exception cref="T:System.ArgumentNullException">
1284         <paramref name="info" /> is <see langword="null" />.</exception>
1285     </member>
1286     <member name="M:System.Collections.Generic.LinkedList`1.Find(`0)">
1287       <summary>Finds the first node that contains the specified value.</summary>
1288       <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
1289       <returns>The first <see cref="T:System.Collections.Generic.LinkedListNode`1" /> that contains the specified value, if found; otherwise, <see langword="null" />.</returns>
1290     </member>
1291     <member name="M:System.Collections.Generic.LinkedList`1.FindLast(`0)">
1292       <summary>Finds the last node that contains the specified value.</summary>
1293       <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
1294       <returns>The last <see cref="T:System.Collections.Generic.LinkedListNode`1" /> that contains the specified value, if found; otherwise, <see langword="null" />.</returns>
1295     </member>
1296     <member name="P:System.Collections.Generic.LinkedList`1.First">
1297       <summary>Gets the first node of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1298       <returns>The first <see cref="T:System.Collections.Generic.LinkedListNode`1" /> of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</returns>
1299     </member>
1300     <member name="M:System.Collections.Generic.LinkedList`1.GetEnumerator">
1301       <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1302       <returns>An <see cref="T:System.Collections.Generic.LinkedList`1.Enumerator" /> for the <see cref="T:System.Collections.Generic.LinkedList`1" />.</returns>
1303     </member>
1304     <member name="M:System.Collections.Generic.LinkedList`1.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1305       <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and returns the data needed to serialize the <see cref="T:System.Collections.Generic.LinkedList`1" /> instance.</summary>
1306       <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information required to serialize the <see cref="T:System.Collections.Generic.LinkedList`1" /> instance.</param>
1307       <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.LinkedList`1" /> instance.</param>
1308       <exception cref="T:System.ArgumentNullException">
1309         <paramref name="info" /> is <see langword="null" />.</exception>
1310     </member>
1311     <member name="P:System.Collections.Generic.LinkedList`1.Last">
1312       <summary>Gets the last node of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1313       <returns>The last <see cref="T:System.Collections.Generic.LinkedListNode`1" /> of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</returns>
1314     </member>
1315     <member name="M:System.Collections.Generic.LinkedList`1.OnDeserialization(System.Object)">
1316       <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and raises the deserialization event when the deserialization is complete.</summary>
1317       <param name="sender">The source of the deserialization event.</param>
1318       <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Generic.LinkedList`1" /> instance is invalid.</exception>
1319     </member>
1320     <member name="M:System.Collections.Generic.LinkedList`1.Remove(`0)">
1321       <summary>Removes the first occurrence of the specified value from the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1322       <param name="value">The value to remove from the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
1323       <returns>
1324         <see langword="true" /> if the element containing <paramref name="value" /> is successfully removed; otherwise, <see langword="false" />.  This method also returns <see langword="false" /> if <paramref name="value" /> was not found in the original <see cref="T:System.Collections.Generic.LinkedList`1" />.</returns>
1325     </member>
1326     <member name="M:System.Collections.Generic.LinkedList`1.Remove(System.Collections.Generic.LinkedListNode{`0})">
1327       <summary>Removes the specified node from the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1328       <param name="node">The <see cref="T:System.Collections.Generic.LinkedListNode`1" /> to remove from the <see cref="T:System.Collections.Generic.LinkedList`1" />.</param>
1329       <exception cref="T:System.ArgumentNullException">
1330         <paramref name="node" /> is <see langword="null" />.</exception>
1331       <exception cref="T:System.InvalidOperationException">
1332         <paramref name="node" /> is not in the current <see cref="T:System.Collections.Generic.LinkedList`1" />.</exception>
1333     </member>
1334     <member name="M:System.Collections.Generic.LinkedList`1.RemoveFirst">
1335       <summary>Removes the node at the start of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1336       <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.LinkedList`1" /> is empty.</exception>
1337     </member>
1338     <member name="M:System.Collections.Generic.LinkedList`1.RemoveLast">
1339       <summary>Removes the node at the end of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1340       <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.LinkedList`1" /> is empty.</exception>
1341     </member>
1342     <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#Generic#ICollection{T}#Add(`0)">
1343       <summary>Adds an item at the end of the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
1344       <param name="value">The value to add at the end of the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
1345     </member>
1346     <member name="P:System.Collections.Generic.LinkedList`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
1347       <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
1348       <returns>
1349         <see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.LinkedList`1" />, this property always returns <see langword="false" />.</returns>
1350     </member>
1351     <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
1352       <summary>Returns an enumerator that iterates through a collection.</summary>
1353       <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.</returns>
1354     </member>
1355     <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
1356       <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
1357       <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" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
1358       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
1359       <exception cref="T:System.ArgumentNullException">
1360         <paramref name="array" /> is <see langword="null" />.</exception>
1361       <exception cref="T:System.ArgumentOutOfRangeException">
1362         <paramref name="index" /> is less than zero.</exception>
1363       <exception cref="T:System.ArgumentException">
1364         <paramref name="array" /> is multidimensional.
1365 -or-
1366 <paramref name="array" /> does not have zero-based indexing.
1367 -or-
1368 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" />.
1369 -or-
1370 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>
1371     </member>
1372     <member name="P:System.Collections.Generic.LinkedList`1.System#Collections#ICollection#IsSynchronized">
1373       <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
1374       <returns>
1375         <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.LinkedList`1" />, this property always returns <see langword="false" />.</returns>
1376     </member>
1377     <member name="P:System.Collections.Generic.LinkedList`1.System#Collections#ICollection#SyncRoot">
1378       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
1379       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.  In the default implementation of <see cref="T:System.Collections.Generic.LinkedList`1" />, this property always returns the current instance.</returns>
1380     </member>
1381     <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#IEnumerable#GetEnumerator">
1382       <summary>Returns an enumerator that iterates through the linked list as a collection.</summary>
1383       <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the linked list as a collection.</returns>
1384     </member>
1385     <member name="T:System.Collections.Generic.LinkedListNode`1">
1386       <summary>Represents a node in a <see cref="T:System.Collections.Generic.LinkedList`1" />. This class cannot be inherited.</summary>
1387       <typeparam name="T">Specifies the element type of the linked list.</typeparam>
1388     </member>
1389     <member name="M:System.Collections.Generic.LinkedListNode`1.#ctor(`0)">
1390       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> class, containing the specified value.</summary>
1391       <param name="value">The value to contain in the <see cref="T:System.Collections.Generic.LinkedListNode`1" />.</param>
1392     </member>
1393     <member name="P:System.Collections.Generic.LinkedListNode`1.List">
1394       <summary>Gets the <see cref="T:System.Collections.Generic.LinkedList`1" /> that the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> belongs to.</summary>
1395       <returns>A reference to the <see cref="T:System.Collections.Generic.LinkedList`1" /> that the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> belongs to, or <see langword="null" /> if the <see cref="T:System.Collections.Generic.LinkedListNode`1" /> is not linked.</returns>
1396     </member>
1397     <member name="P:System.Collections.Generic.LinkedListNode`1.Next">
1398       <summary>Gets the next node in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1399       <returns>A reference to the next node in the <see cref="T:System.Collections.Generic.LinkedList`1" />, or <see langword="null" /> if the current node is the last element (<see cref="P:System.Collections.Generic.LinkedList`1.Last" />) of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</returns>
1400     </member>
1401     <member name="P:System.Collections.Generic.LinkedListNode`1.Previous">
1402       <summary>Gets the previous node in the <see cref="T:System.Collections.Generic.LinkedList`1" />.</summary>
1403       <returns>A reference to the previous node in the <see cref="T:System.Collections.Generic.LinkedList`1" />, or <see langword="null" /> if the current node is the first element (<see cref="P:System.Collections.Generic.LinkedList`1.First" />) of the <see cref="T:System.Collections.Generic.LinkedList`1" />.</returns>
1404     </member>
1405     <member name="P:System.Collections.Generic.LinkedListNode`1.Value">
1406       <summary>Gets the value contained in the node.</summary>
1407       <returns>The value contained in the node.</returns>
1408     </member>
1409     <member name="T:System.Collections.Generic.List`1">
1410       <summary>Represents a strongly typed list of objects that can be accessed by index. Provides methods to search, sort, and manipulate lists.</summary>
1411       <typeparam name="T">The type of elements in the list.</typeparam>
1412     </member>
1413     <member name="M:System.Collections.Generic.List`1.#ctor">
1414       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.List`1" /> class that is empty and has the default initial capacity.</summary>
1415     </member>
1416     <member name="M:System.Collections.Generic.List`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
1417       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.List`1" /> class that contains elements copied from the specified collection and has sufficient capacity to accommodate the number of elements copied.</summary>
1418       <param name="collection">The collection whose elements are copied to the new list.</param>
1419       <exception cref="T:System.ArgumentNullException">
1420         <paramref name="collection" /> is <see langword="null" />.</exception>
1421     </member>
1422     <member name="M:System.Collections.Generic.List`1.#ctor(System.Int32)">
1423       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.List`1" /> class that is empty and has the specified initial capacity.</summary>
1424       <param name="capacity">The number of elements that the new list can initially store.</param>
1425       <exception cref="T:System.ArgumentOutOfRangeException">
1426         <paramref name="capacity" /> is less than 0.</exception>
1427     </member>
1428     <member name="M:System.Collections.Generic.List`1.Add(`0)">
1429       <summary>Adds an object to the end of the <see cref="T:System.Collections.Generic.List`1" />.</summary>
1430       <param name="item">The object to be added to the end of the <see cref="T:System.Collections.Generic.List`1" />. The value can be <see langword="null" /> for reference types.</param>
1431     </member>
1432     <member name="M:System.Collections.Generic.List`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
1433       <summary>Adds the elements of the specified collection to the end of the <see cref="T:System.Collections.Generic.List`1" />.</summary>
1434       <param name="collection">The collection whose elements should be added to the end of the <see cref="T:System.Collections.Generic.List`1" />. The collection itself cannot be <see langword="null" />, but it can contain elements that are <see langword="null" />, if type <paramref name="T" /> is a reference type.</param>
1435       <exception cref="T:System.ArgumentNullException">
1436         <paramref name="collection" /> is <see langword="null" />.</exception>
1437     </member>
1438     <member name="M:System.Collections.Generic.List`1.AsReadOnly">
1439       <summary>Returns a read-only <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> wrapper for the current collection.</summary>
1440       <returns>An object that acts as a read-only wrapper around the current <see cref="T:System.Collections.Generic.List`1" />.</returns>
1441     </member>
1442     <member name="M:System.Collections.Generic.List`1.BinarySearch(`0)">
1443       <summary>Searches the entire sorted <see cref="T:System.Collections.Generic.List`1" /> for an element using the default comparer and returns the zero-based index of the element.</summary>
1444       <param name="item">The object to locate. The value can be <see langword="null" /> for reference types.</param>
1445       <returns>The zero-based index of <paramref name="item" /> in the sorted <see cref="T:System.Collections.Generic.List`1" />, if <paramref name="item" /> is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than <paramref name="item" /> or, if there is no larger element, the bitwise complement of <see cref="P:System.Collections.Generic.List`1.Count" />.</returns>
1446       <exception cref="T:System.InvalidOperationException">The default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" /> cannot find an implementation of the <see cref="T:System.IComparable`1" /> generic interface or the <see cref="T:System.IComparable" /> interface for type <paramref name="T" />.</exception>
1447     </member>
1448     <member name="M:System.Collections.Generic.List`1.BinarySearch(`0,System.Collections.Generic.IComparer{`0})">
1449       <summary>Searches the entire sorted <see cref="T:System.Collections.Generic.List`1" /> for an element using the specified comparer and returns the zero-based index of the element.</summary>
1450       <param name="item">The object to locate. The value can be <see langword="null" /> for reference types.</param>
1451       <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing elements.
1452 -or-
1453 <see langword="null" /> to use the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" />.</param>
1454       <returns>The zero-based index of <paramref name="item" /> in the sorted <see cref="T:System.Collections.Generic.List`1" />, if <paramref name="item" /> is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than <paramref name="item" /> or, if there is no larger element, the bitwise complement of <see cref="P:System.Collections.Generic.List`1.Count" />.</returns>
1455       <exception cref="T:System.InvalidOperationException">
1456         <paramref name="comparer" /> is <see langword="null" />, and the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" /> cannot find an implementation of the <see cref="T:System.IComparable`1" /> generic interface or the <see cref="T:System.IComparable" /> interface for type <paramref name="T" />.</exception>
1457     </member>
1458     <member name="M:System.Collections.Generic.List`1.BinarySearch(System.Int32,System.Int32,`0,System.Collections.Generic.IComparer{`0})">
1459       <summary>Searches a range of elements in the sorted <see cref="T:System.Collections.Generic.List`1" /> for an element using the specified comparer and returns the zero-based index of the element.</summary>
1460       <param name="index">The zero-based starting index of the range to search.</param>
1461       <param name="count">The length of the range to search.</param>
1462       <param name="item">The object to locate. The value can be <see langword="null" /> for reference types.</param>
1463       <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing elements, or <see langword="null" /> to use the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" />.</param>
1464       <returns>The zero-based index of <paramref name="item" /> in the sorted <see cref="T:System.Collections.Generic.List`1" />, if <paramref name="item" /> is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than <paramref name="item" /> or, if there is no larger element, the bitwise complement of <see cref="P:System.Collections.Generic.List`1.Count" />.</returns>
1465       <exception cref="T:System.ArgumentOutOfRangeException">
1466         <paramref name="index" /> is less than 0.
1467 -or-
1468 <paramref name="count" /> is less than 0.</exception>
1469       <exception cref="T:System.ArgumentException">
1470         <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in the <see cref="T:System.Collections.Generic.List`1" />.</exception>
1471       <exception cref="T:System.InvalidOperationException">
1472         <paramref name="comparer" /> is <see langword="null" />, and the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" /> cannot find an implementation of the <see cref="T:System.IComparable`1" /> generic interface or the <see cref="T:System.IComparable" /> interface for type <paramref name="T" />.</exception>
1473     </member>
1474     <member name="P:System.Collections.Generic.List`1.Capacity">
1475       <summary>Gets or sets the total number of elements the internal data structure can hold without resizing.</summary>
1476       <returns>The number of elements that the <see cref="T:System.Collections.Generic.List`1" /> can contain before resizing is required.</returns>
1477       <exception cref="T:System.ArgumentOutOfRangeException">
1478         <see cref="P:System.Collections.Generic.List`1.Capacity" /> is set to a value that is less than <see cref="P:System.Collections.Generic.List`1.Count" />.</exception>
1479       <exception cref="T:System.OutOfMemoryException">There is not enough memory available on the system.</exception>
1480     </member>
1481     <member name="M:System.Collections.Generic.List`1.Clear">
1482       <summary>Removes all elements from the <see cref="T:System.Collections.Generic.List`1" />.</summary>
1483     </member>
1484     <member name="M:System.Collections.Generic.List`1.Contains(`0)">
1485       <summary>Determines whether an element is in the <see cref="T:System.Collections.Generic.List`1" />.</summary>
1486       <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.List`1" />. The value can be <see langword="null" /> for reference types.</param>
1487       <returns>
1488         <see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.List`1" />; otherwise, <see langword="false" />.</returns>
1489     </member>
1490     <member name="M:System.Collections.Generic.List`1.ConvertAll``1(System.Converter{`0,``0})">
1491       <summary>Converts the elements in the current <see cref="T:System.Collections.Generic.List`1" /> to another type, and returns a list containing the converted elements.</summary>
1492       <param name="converter">A <see cref="T:System.Converter`2" /> delegate that converts each element from one type to another type.</param>
1493       <typeparam name="TOutput">The type of the elements of the target array.</typeparam>
1494       <returns>A <see cref="T:System.Collections.Generic.List`1" /> of the target type containing the converted elements from the current <see cref="T:System.Collections.Generic.List`1" />.</returns>
1495       <exception cref="T:System.ArgumentNullException">
1496         <paramref name="converter" /> is <see langword="null" />.</exception>
1497     </member>
1498     <member name="M:System.Collections.Generic.List`1.CopyTo(`0[])">
1499       <summary>Copies the entire <see cref="T:System.Collections.Generic.List`1" /> to a compatible one-dimensional array, starting at the beginning of the target array.</summary>
1500       <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" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
1501       <exception cref="T:System.ArgumentNullException">
1502         <paramref name="array" /> is <see langword="null" />.</exception>
1503       <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.List`1" /> is greater than the number of elements that the destination <paramref name="array" /> can contain.</exception>
1504     </member>
1505     <member name="M:System.Collections.Generic.List`1.CopyTo(`0[],System.Int32)">
1506       <summary>Copies the entire <see cref="T:System.Collections.Generic.List`1" /> to a compatible one-dimensional array, starting at the specified index of the target array.</summary>
1507       <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" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
1508       <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
1509       <exception cref="T:System.ArgumentNullException">
1510         <paramref name="array" /> is <see langword="null" />.</exception>
1511       <exception cref="T:System.ArgumentOutOfRangeException">
1512         <paramref name="arrayIndex" /> is less than 0.</exception>
1513       <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.List`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
1514     </member>
1515     <member name="M:System.Collections.Generic.List`1.CopyTo(System.Int32,`0[],System.Int32,System.Int32)">
1516       <summary>Copies a range of elements from the <see cref="T:System.Collections.Generic.List`1" /> to a compatible one-dimensional array, starting at the specified index of the target array.</summary>
1517       <param name="index">The zero-based index in the source <see cref="T:System.Collections.Generic.List`1" /> at which copying begins.</param>
1518       <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" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
1519       <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
1520       <param name="count">The number of elements to copy.</param>
1521       <exception cref="T:System.ArgumentNullException">
1522         <paramref name="array" /> is <see langword="null" />.</exception>
1523       <exception cref="T:System.ArgumentOutOfRangeException">
1524         <paramref name="index" /> is less than 0.
1525 -or-
1526 <paramref name="arrayIndex" /> is less than 0.
1527 -or-
1528 <paramref name="count" /> is less than 0.</exception>
1529       <exception cref="T:System.ArgumentException">
1530         <paramref name="index" /> is equal to or greater than the <see cref="P:System.Collections.Generic.List`1.Count" /> of the source <see cref="T:System.Collections.Generic.List`1" />.
1531 -or-
1532 The number of elements from <paramref name="index" /> to the end of the source <see cref="T:System.Collections.Generic.List`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
1533     </member>
1534     <member name="P:System.Collections.Generic.List`1.Count">
1535       <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.List`1" />.</summary>
1536       <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.List`1" />.</returns>
1537     </member>
1538     <member name="T:System.Collections.Generic.List`1.Enumerator">
1539       <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.List`1" />.</summary>
1540       <typeparam name="T" />
1541     </member>
1542     <member name="P:System.Collections.Generic.List`1.Enumerator.Current">
1543       <summary>Gets the element at the current position of the enumerator.</summary>
1544       <returns>The element in the <see cref="T:System.Collections.Generic.List`1" /> at the current position of the enumerator.</returns>
1545     </member>
1546     <member name="M:System.Collections.Generic.List`1.Enumerator.Dispose">
1547       <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.List`1.Enumerator" />.</summary>
1548     </member>
1549     <member name="M:System.Collections.Generic.List`1.Enumerator.MoveNext">
1550       <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.List`1" />.</summary>
1551       <returns>
1552         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
1553       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
1554     </member>
1555     <member name="P:System.Collections.Generic.List`1.Enumerator.System#Collections#IEnumerator#Current">
1556       <summary>Gets the element at the current position of the enumerator.</summary>
1557       <returns>The element in the <see cref="T:System.Collections.Generic.List`1" /> at the current position of the enumerator.</returns>
1558       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
1559     </member>
1560     <member name="M:System.Collections.Generic.List`1.Enumerator.System#Collections#IEnumerator#Reset">
1561       <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
1562       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
1563     </member>
1564     <member name="M:System.Collections.Generic.List`1.Exists(System.Predicate{`0})">
1565       <summary>Determines whether the <see cref="T:System.Collections.Generic.List`1" /> contains elements that match the conditions defined by the specified predicate.</summary>
1566       <param name="match">The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the elements to search for.</param>
1567       <returns>
1568         <see langword="true" /> if the <see cref="T:System.Collections.Generic.List`1" /> contains one or more elements that match the conditions defined by the specified predicate; otherwise, <see langword="false" />.</returns>
1569       <exception cref="T:System.ArgumentNullException">
1570         <paramref name="match" /> is <see langword="null" />.</exception>
1571     </member>
1572     <member name="M:System.Collections.Generic.List`1.Find(System.Predicate{`0})">
1573       <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire <see cref="T:System.Collections.Generic.List`1" />.</summary>
1574       <param name="match">The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the element to search for.</param>
1575       <returns>The first element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type <paramref name="T" />.</returns>
1576       <exception cref="T:System.ArgumentNullException">
1577         <paramref name="match" /> is <see langword="null" />.</exception>
1578     </member>
1579     <member name="M:System.Collections.Generic.List`1.FindAll(System.Predicate{`0})">
1580       <summary>Retrieves all the elements that match the conditions defined by the specified predicate.</summary>
1581       <param name="match">The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the elements to search for.</param>
1582       <returns>A <see cref="T:System.Collections.Generic.List`1" /> containing all the elements that match the conditions defined by the specified predicate, if found; otherwise, an empty <see cref="T:System.Collections.Generic.List`1" />.</returns>
1583       <exception cref="T:System.ArgumentNullException">
1584         <paramref name="match" /> is <see langword="null" />.</exception>
1585     </member>
1586     <member name="M:System.Collections.Generic.List`1.FindIndex(System.Int32,System.Int32,System.Predicate{`0})">
1587       <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that starts at the specified index and contains the specified number of elements.</summary>
1588       <param name="startIndex">The zero-based starting index of the search.</param>
1589       <param name="count">The number of elements in the section to search.</param>
1590       <param name="match">The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the element to search for.</param>
1591       <returns>The zero-based index of the first occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, -1.</returns>
1592       <exception cref="T:System.ArgumentNullException">
1593         <paramref name="match" /> is <see langword="null" />.</exception>
1594       <exception cref="T:System.ArgumentOutOfRangeException">
1595         <paramref name="startIndex" /> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1" />.
1596 -or-
1597 <paramref name="count" /> is less than 0.
1598 -or-
1599 <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in the <see cref="T:System.Collections.Generic.List`1" />.</exception>
1600     </member>
1601     <member name="M:System.Collections.Generic.List`1.FindIndex(System.Int32,System.Predicate{`0})">
1602       <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that extends from the specified index to the last element.</summary>
1603       <param name="startIndex">The zero-based starting index of the search.</param>
1604       <param name="match">The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the element to search for.</param>
1605       <returns>The zero-based index of the first occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, -1.</returns>
1606       <exception cref="T:System.ArgumentNullException">
1607         <paramref name="match" /> is <see langword="null" />.</exception>
1608       <exception cref="T:System.ArgumentOutOfRangeException">
1609         <paramref name="startIndex" /> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1" />.</exception>
1610     </member>
1611     <member name="M:System.Collections.Generic.List`1.FindIndex(System.Predicate{`0})">
1612       <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Collections.Generic.List`1" />.</summary>
1613       <param name="match">The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the element to search for.</param>
1614       <returns>The zero-based index of the first occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, -1.</returns>
1615       <exception cref="T:System.ArgumentNullException">
1616         <paramref name="match" /> is <see langword="null" />.</exception>
1617     </member>
1618     <member name="M:System.Collections.Generic.List`1.FindLast(System.Predicate{`0})">
1619       <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire <see cref="T:System.Collections.Generic.List`1" />.</summary>
1620       <param name="match">The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the element to search for.</param>
1621       <returns>The last element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type <paramref name="T" />.</returns>
1622       <exception cref="T:System.ArgumentNullException">
1623         <paramref name="match" /> is <see langword="null" />.</exception>
1624     </member>
1625     <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Int32,System.Int32,System.Predicate{`0})">
1626       <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that contains the specified number of elements and ends at the specified index.</summary>
1627       <param name="startIndex">The zero-based starting index of the backward search.</param>
1628       <param name="count">The number of elements in the section to search.</param>
1629       <param name="match">The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the element to search for.</param>
1630       <returns>The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, -1.</returns>
1631       <exception cref="T:System.ArgumentNullException">
1632         <paramref name="match" /> is <see langword="null" />.</exception>
1633       <exception cref="T:System.ArgumentOutOfRangeException">
1634         <paramref name="startIndex" /> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1" />.
1635 -or-
1636 <paramref name="count" /> is less than 0.
1637 -or-
1638 <paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in the <see cref="T:System.Collections.Generic.List`1" />.</exception>
1639     </member>
1640     <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Int32,System.Predicate{`0})">
1641       <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that extends from the first element to the specified index.</summary>
1642       <param name="startIndex">The zero-based starting index of the backward search.</param>
1643       <param name="match">The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the element to search for.</param>
1644       <returns>The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, -1.</returns>
1645       <exception cref="T:System.ArgumentNullException">
1646         <paramref name="match" /> is <see langword="null" />.</exception>
1647       <exception cref="T:System.ArgumentOutOfRangeException">
1648         <paramref name="startIndex" /> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1" />.</exception>
1649     </member>
1650     <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Predicate{`0})">
1651       <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the entire <see cref="T:System.Collections.Generic.List`1" />.</summary>
1652       <param name="match">The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the element to search for.</param>
1653       <returns>The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match" />, if found; otherwise, -1.</returns>
1654       <exception cref="T:System.ArgumentNullException">
1655         <paramref name="match" /> is <see langword="null" />.</exception>
1656     </member>
1657     <member name="M:System.Collections.Generic.List`1.ForEach(System.Action{`0})">
1658       <summary>Performs the specified action on each element of the <see cref="T:System.Collections.Generic.List`1" />.</summary>
1659       <param name="action">The <see cref="T:System.Action`1" /> delegate to perform on each element of the <see cref="T:System.Collections.Generic.List`1" />.</param>
1660       <exception cref="T:System.ArgumentNullException">
1661         <paramref name="action" /> is <see langword="null" />.</exception>
1662       <exception cref="T:System.InvalidOperationException">An element in the collection has been modified.</exception>
1663     </member>
1664     <member name="M:System.Collections.Generic.List`1.GetEnumerator">
1665       <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.List`1" />.</summary>
1666       <returns>A <see cref="T:System.Collections.Generic.List`1.Enumerator" /> for the <see cref="T:System.Collections.Generic.List`1" />.</returns>
1667     </member>
1668     <member name="M:System.Collections.Generic.List`1.GetRange(System.Int32,System.Int32)">
1669       <summary>Creates a shallow copy of a range of elements in the source <see cref="T:System.Collections.Generic.List`1" />.</summary>
1670       <param name="index">The zero-based <see cref="T:System.Collections.Generic.List`1" /> index at which the range starts.</param>
1671       <param name="count">The number of elements in the range.</param>
1672       <returns>A shallow copy of a range of elements in the source <see cref="T:System.Collections.Generic.List`1" />.</returns>
1673       <exception cref="T:System.ArgumentOutOfRangeException">
1674         <paramref name="index" /> is less than 0.
1675 -or-
1676 <paramref name="count" /> is less than 0.</exception>
1677       <exception cref="T:System.ArgumentException">
1678         <paramref name="index" /> and <paramref name="count" /> do not denote a valid range of elements in the <see cref="T:System.Collections.Generic.List`1" />.</exception>
1679     </member>
1680     <member name="M:System.Collections.Generic.List`1.IndexOf(`0)">
1681       <summary>Searches for the specified object and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Collections.Generic.List`1" />.</summary>
1682       <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.List`1" />. The value can be <see langword="null" /> for reference types.</param>
1683       <returns>The zero-based index of the first occurrence of <paramref name="item" /> within the entire <see cref="T:System.Collections.Generic.List`1" />, if found; otherwise, -1.</returns>
1684     </member>
1685     <member name="M:System.Collections.Generic.List`1.IndexOf(`0,System.Int32)">
1686       <summary>Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that extends from the specified index to the last element.</summary>
1687       <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.List`1" />. The value can be <see langword="null" /> for reference types.</param>
1688       <param name="index">The zero-based starting index of the search. 0 (zero) is valid in an empty list.</param>
1689       <returns>The zero-based index of the first occurrence of <paramref name="item" /> within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that extends from <paramref name="index" /> to the last element, if found; otherwise, -1.</returns>
1690       <exception cref="T:System.ArgumentOutOfRangeException">
1691         <paramref name="index" /> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1" />.</exception>
1692     </member>
1693     <member name="M:System.Collections.Generic.List`1.IndexOf(`0,System.Int32,System.Int32)">
1694       <summary>Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that starts at the specified index and contains the specified number of elements.</summary>
1695       <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.List`1" />. The value can be <see langword="null" /> for reference types.</param>
1696       <param name="index">The zero-based starting index of the search. 0 (zero) is valid in an empty list.</param>
1697       <param name="count">The number of elements in the section to search.</param>
1698       <returns>The zero-based index of the first occurrence of <paramref name="item" /> within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that starts at <paramref name="index" /> and contains <paramref name="count" /> number of elements, if found; otherwise, -1.</returns>
1699       <exception cref="T:System.ArgumentOutOfRangeException">
1700         <paramref name="index" /> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1" />.
1701 -or-
1702 <paramref name="count" /> is less than 0.
1703 -or-
1704 <paramref name="index" /> and <paramref name="count" /> do not specify a valid section in the <see cref="T:System.Collections.Generic.List`1" />.</exception>
1705     </member>
1706     <member name="M:System.Collections.Generic.List`1.Insert(System.Int32,`0)">
1707       <summary>Inserts an element into the <see cref="T:System.Collections.Generic.List`1" /> at the specified index.</summary>
1708       <param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
1709       <param name="item">The object to insert. The value can be <see langword="null" /> for reference types.</param>
1710       <exception cref="T:System.ArgumentOutOfRangeException">
1711         <paramref name="index" /> is less than 0.
1712 -or-
1713 <paramref name="index" /> is greater than <see cref="P:System.Collections.Generic.List`1.Count" />.</exception>
1714     </member>
1715     <member name="M:System.Collections.Generic.List`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0})">
1716       <summary>Inserts the elements of a collection into the <see cref="T:System.Collections.Generic.List`1" /> at the specified index.</summary>
1717       <param name="index">The zero-based index at which the new elements should be inserted.</param>
1718       <param name="collection">The collection whose elements should be inserted into the <see cref="T:System.Collections.Generic.List`1" />. The collection itself cannot be <see langword="null" />, but it can contain elements that are <see langword="null" />, if type <paramref name="T" /> is a reference type.</param>
1719       <exception cref="T:System.ArgumentNullException">
1720         <paramref name="collection" /> is <see langword="null" />.</exception>
1721       <exception cref="T:System.ArgumentOutOfRangeException">
1722         <paramref name="index" /> is less than 0.
1723 -or-
1724 <paramref name="index" /> is greater than <see cref="P:System.Collections.Generic.List`1.Count" />.</exception>
1725     </member>
1726     <member name="P:System.Collections.Generic.List`1.Item(System.Int32)">
1727       <summary>Gets or sets the element at the specified index.</summary>
1728       <param name="index">The zero-based index of the element to get or set.</param>
1729       <returns>The element at the specified index.</returns>
1730       <exception cref="T:System.ArgumentOutOfRangeException">
1731         <paramref name="index" /> is less than 0.
1732 -or-
1733 <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.Generic.List`1.Count" />.</exception>
1734     </member>
1735     <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0)">
1736       <summary>Searches for the specified object and returns the zero-based index of the last occurrence within the entire <see cref="T:System.Collections.Generic.List`1" />.</summary>
1737       <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.List`1" />. The value can be <see langword="null" /> for reference types.</param>
1738       <returns>The zero-based index of the last occurrence of <paramref name="item" /> within the entire the <see cref="T:System.Collections.Generic.List`1" />, if found; otherwise, -1.</returns>
1739     </member>
1740     <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0,System.Int32)">
1741       <summary>Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that extends from the first element to the specified index.</summary>
1742       <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.List`1" />. The value can be <see langword="null" /> for reference types.</param>
1743       <param name="index">The zero-based starting index of the backward search.</param>
1744       <returns>The zero-based index of the last occurrence of <paramref name="item" /> within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that extends from the first element to <paramref name="index" />, if found; otherwise, -1.</returns>
1745       <exception cref="T:System.ArgumentOutOfRangeException">
1746         <paramref name="index" /> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1" />.</exception>
1747     </member>
1748     <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0,System.Int32,System.Int32)">
1749       <summary>Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that contains the specified number of elements and ends at the specified index.</summary>
1750       <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.List`1" />. The value can be <see langword="null" /> for reference types.</param>
1751       <param name="index">The zero-based starting index of the backward search.</param>
1752       <param name="count">The number of elements in the section to search.</param>
1753       <returns>The zero-based index of the last occurrence of <paramref name="item" /> within the range of elements in the <see cref="T:System.Collections.Generic.List`1" /> that contains <paramref name="count" /> number of elements and ends at <paramref name="index" />, if found; otherwise, -1.</returns>
1754       <exception cref="T:System.ArgumentOutOfRangeException">
1755         <paramref name="index" /> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1" />.
1756 -or-
1757 <paramref name="count" /> is less than 0.
1758 -or-
1759 <paramref name="index" /> and <paramref name="count" /> do not specify a valid section in the <see cref="T:System.Collections.Generic.List`1" />.</exception>
1760     </member>
1761     <member name="M:System.Collections.Generic.List`1.Remove(`0)">
1762       <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.List`1" />.</summary>
1763       <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.List`1" />. The value can be <see langword="null" /> for reference types.</param>
1764       <returns>
1765         <see langword="true" /> if <paramref name="item" /> is successfully removed; otherwise, <see langword="false" />.  This method also returns <see langword="false" /> if <paramref name="item" /> was not found in the <see cref="T:System.Collections.Generic.List`1" />.</returns>
1766     </member>
1767     <member name="M:System.Collections.Generic.List`1.RemoveAll(System.Predicate{`0})">
1768       <summary>Removes all the elements that match the conditions defined by the specified predicate.</summary>
1769       <param name="match">The <see cref="T:System.Predicate`1" /> delegate that defines the conditions of the elements to remove.</param>
1770       <returns>The number of elements removed from the <see cref="T:System.Collections.Generic.List`1" />.</returns>
1771       <exception cref="T:System.ArgumentNullException">
1772         <paramref name="match" /> is <see langword="null" />.</exception>
1773     </member>
1774     <member name="M:System.Collections.Generic.List`1.RemoveAt(System.Int32)">
1775       <summary>Removes the element at the specified index of the <see cref="T:System.Collections.Generic.List`1" />.</summary>
1776       <param name="index">The zero-based index of the element to remove.</param>
1777       <exception cref="T:System.ArgumentOutOfRangeException">
1778         <paramref name="index" /> is less than 0.
1779 -or-
1780 <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.Generic.List`1.Count" />.</exception>
1781     </member>
1782     <member name="M:System.Collections.Generic.List`1.RemoveRange(System.Int32,System.Int32)">
1783       <summary>Removes a range of elements from the <see cref="T:System.Collections.Generic.List`1" />.</summary>
1784       <param name="index">The zero-based starting index of the range of elements to remove.</param>
1785       <param name="count">The number of elements to remove.</param>
1786       <exception cref="T:System.ArgumentOutOfRangeException">
1787         <paramref name="index" /> is less than 0.
1788 -or-
1789 <paramref name="count" /> is less than 0.</exception>
1790       <exception cref="T:System.ArgumentException">
1791         <paramref name="index" /> and <paramref name="count" /> do not denote a valid range of elements in the <see cref="T:System.Collections.Generic.List`1" />.</exception>
1792     </member>
1793     <member name="M:System.Collections.Generic.List`1.Reverse">
1794       <summary>Reverses the order of the elements in the entire <see cref="T:System.Collections.Generic.List`1" />.</summary>
1795     </member>
1796     <member name="M:System.Collections.Generic.List`1.Reverse(System.Int32,System.Int32)">
1797       <summary>Reverses the order of the elements in the specified range.</summary>
1798       <param name="index">The zero-based starting index of the range to reverse.</param>
1799       <param name="count">The number of elements in the range to reverse.</param>
1800       <exception cref="T:System.ArgumentOutOfRangeException">
1801         <paramref name="index" /> is less than 0.
1802 -or-
1803 <paramref name="count" /> is less than 0.</exception>
1804       <exception cref="T:System.ArgumentException">
1805         <paramref name="index" /> and <paramref name="count" /> do not denote a valid range of elements in the <see cref="T:System.Collections.Generic.List`1" />.</exception>
1806     </member>
1807     <member name="M:System.Collections.Generic.List`1.Sort">
1808       <summary>Sorts the elements in the entire <see cref="T:System.Collections.Generic.List`1" /> using the default comparer.</summary>
1809       <exception cref="T:System.InvalidOperationException">The default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" /> cannot find an implementation of the <see cref="T:System.IComparable`1" /> generic interface or the <see cref="T:System.IComparable" /> interface for type <paramref name="T" />.</exception>
1810     </member>
1811     <member name="M:System.Collections.Generic.List`1.Sort(System.Collections.Generic.IComparer{`0})">
1812       <summary>Sorts the elements in the entire <see cref="T:System.Collections.Generic.List`1" /> using the specified comparer.</summary>
1813       <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing elements, or <see langword="null" /> to use the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" />.</param>
1814       <exception cref="T:System.InvalidOperationException">
1815         <paramref name="comparer" /> is <see langword="null" />, and the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" /> cannot find implementation of the <see cref="T:System.IComparable`1" /> generic interface or the <see cref="T:System.IComparable" /> interface for type <paramref name="T" />.</exception>
1816       <exception cref="T:System.ArgumentException">The implementation of <paramref name="comparer" /> caused an error during the sort. For example, <paramref name="comparer" /> might not return 0 when comparing an item with itself.</exception>
1817     </member>
1818     <member name="M:System.Collections.Generic.List`1.Sort(System.Comparison{`0})">
1819       <summary>Sorts the elements in the entire <see cref="T:System.Collections.Generic.List`1" /> using the specified <see cref="T:System.Comparison`1" />.</summary>
1820       <param name="comparison">The <see cref="T:System.Comparison`1" /> to use when comparing elements.</param>
1821       <exception cref="T:System.ArgumentNullException">
1822         <paramref name="comparison" /> is <see langword="null" />.</exception>
1823       <exception cref="T:System.ArgumentException">The implementation of <paramref name="comparison" /> caused an error during the sort. For example, <paramref name="comparison" /> might not return 0 when comparing an item with itself.</exception>
1824     </member>
1825     <member name="M:System.Collections.Generic.List`1.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0})">
1826       <summary>Sorts the elements in a range of elements in <see cref="T:System.Collections.Generic.List`1" /> using the specified comparer.</summary>
1827       <param name="index">The zero-based starting index of the range to sort.</param>
1828       <param name="count">The length of the range to sort.</param>
1829       <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing elements, or <see langword="null" /> to use the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" />.</param>
1830       <exception cref="T:System.ArgumentOutOfRangeException">
1831         <paramref name="index" /> is less than 0.
1832 -or-
1833 <paramref name="count" /> is less than 0.</exception>
1834       <exception cref="T:System.ArgumentException">
1835         <paramref name="index" /> and <paramref name="count" /> do not specify a valid range in the <see cref="T:System.Collections.Generic.List`1" />.
1836 -or-
1837 The implementation of <paramref name="comparer" /> caused an error during the sort. For example, <paramref name="comparer" /> might not return 0 when comparing an item with itself.</exception>
1838       <exception cref="T:System.InvalidOperationException">
1839         <paramref name="comparer" /> is <see langword="null" />, and the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default" /> cannot find implementation of the <see cref="T:System.IComparable`1" /> generic interface or the <see cref="T:System.IComparable" /> interface for type <paramref name="T" />.</exception>
1840     </member>
1841     <member name="P:System.Collections.Generic.List`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
1842       <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
1843       <returns>
1844         <see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.List`1" />, this property always returns <see langword="false" />.</returns>
1845     </member>
1846     <member name="M:System.Collections.Generic.List`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
1847       <summary>Returns an enumerator that iterates through a collection.</summary>
1848       <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.</returns>
1849     </member>
1850     <member name="M:System.Collections.Generic.List`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
1851       <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
1852       <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" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
1853       <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
1854       <exception cref="T:System.ArgumentNullException">
1855         <paramref name="array" /> is <see langword="null" />.</exception>
1856       <exception cref="T:System.ArgumentOutOfRangeException">
1857         <paramref name="arrayIndex" /> is less than 0.</exception>
1858       <exception cref="T:System.ArgumentException">
1859         <paramref name="array" /> is multidimensional.
1860 -or-
1861 <paramref name="array" /> does not have zero-based indexing.
1862 -or-
1863 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" />.
1864 -or-
1865 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>
1866     </member>
1867     <member name="P:System.Collections.Generic.List`1.System#Collections#ICollection#IsSynchronized">
1868       <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
1869       <returns>
1870         <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.List`1" />, this property always returns <see langword="false" />.</returns>
1871     </member>
1872     <member name="P:System.Collections.Generic.List`1.System#Collections#ICollection#SyncRoot">
1873       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
1874       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.  In the default implementation of <see cref="T:System.Collections.Generic.List`1" />, this property always returns the current instance.</returns>
1875     </member>
1876     <member name="M:System.Collections.Generic.List`1.System#Collections#IEnumerable#GetEnumerator">
1877       <summary>Returns an enumerator that iterates through a collection.</summary>
1878       <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
1879     </member>
1880     <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Add(System.Object)">
1881       <summary>Adds an item to the <see cref="T:System.Collections.IList" />.</summary>
1882       <param name="item">The <see cref="T:System.Object" /> to add to the <see cref="T:System.Collections.IList" />.</param>
1883       <returns>The position into which the new element was inserted.</returns>
1884       <exception cref="T:System.ArgumentException">
1885         <paramref name="item" /> is of a type that is not assignable to the <see cref="T:System.Collections.IList" />.</exception>
1886     </member>
1887     <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Contains(System.Object)">
1888       <summary>Determines whether the <see cref="T:System.Collections.IList" /> contains a specific value.</summary>
1889       <param name="item">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.IList" />.</param>
1890       <returns>
1891         <see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.IList" />; otherwise, <see langword="false" />.</returns>
1892     </member>
1893     <member name="M:System.Collections.Generic.List`1.System#Collections#IList#IndexOf(System.Object)">
1894       <summary>Determines the index of a specific item in the <see cref="T:System.Collections.IList" />.</summary>
1895       <param name="item">The object to locate in the <see cref="T:System.Collections.IList" />.</param>
1896       <returns>The index of <paramref name="item" /> if found in the list; otherwise, -1.</returns>
1897       <exception cref="T:System.ArgumentException">
1898         <paramref name="item" /> is of a type that is not assignable to the <see cref="T:System.Collections.IList" />.</exception>
1899     </member>
1900     <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Insert(System.Int32,System.Object)">
1901       <summary>Inserts an item to the <see cref="T:System.Collections.IList" /> at the specified index.</summary>
1902       <param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
1903       <param name="item">The object to insert into the <see cref="T:System.Collections.IList" />.</param>
1904       <exception cref="T:System.ArgumentOutOfRangeException">
1905         <paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.IList" />.</exception>
1906       <exception cref="T:System.ArgumentException">
1907         <paramref name="item" /> is of a type that is not assignable to the <see cref="T:System.Collections.IList" />.</exception>
1908     </member>
1909     <member name="P:System.Collections.Generic.List`1.System#Collections#IList#IsFixedSize">
1910       <summary>Gets a value indicating whether the <see cref="T:System.Collections.IList" /> has a fixed size.</summary>
1911       <returns>
1912         <see langword="true" /> if the <see cref="T:System.Collections.IList" /> has a fixed size; otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.List`1" />, this property always returns <see langword="false" />.</returns>
1913     </member>
1914     <member name="P:System.Collections.Generic.List`1.System#Collections#IList#IsReadOnly">
1915       <summary>Gets a value indicating whether the <see cref="T:System.Collections.IList" /> is read-only.</summary>
1916       <returns>
1917         <see langword="true" /> if the <see cref="T:System.Collections.IList" /> is read-only; otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.List`1" />, this property always returns <see langword="false" />.</returns>
1918     </member>
1919     <member name="P:System.Collections.Generic.List`1.System#Collections#IList#Item(System.Int32)">
1920       <summary>Gets or sets the element at the specified index.</summary>
1921       <param name="index">The zero-based index of the element to get or set.</param>
1922       <returns>The element at the specified index.</returns>
1923       <exception cref="T:System.ArgumentOutOfRangeException">
1924         <paramref name="index" /> is not a valid index in the <see cref="T:System.Collections.IList" />.</exception>
1925       <exception cref="T:System.ArgumentException">The property is set and <paramref name="value" /> is of a type that is not assignable to the <see cref="T:System.Collections.IList" />.</exception>
1926     </member>
1927     <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Remove(System.Object)">
1928       <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.IList" />.</summary>
1929       <param name="item">The object to remove from the <see cref="T:System.Collections.IList" />.</param>
1930       <exception cref="T:System.ArgumentException">
1931         <paramref name="item" /> is of a type that is not assignable to the <see cref="T:System.Collections.IList" />.</exception>
1932     </member>
1933     <member name="M:System.Collections.Generic.List`1.ToArray">
1934       <summary>Copies the elements of the <see cref="T:System.Collections.Generic.List`1" /> to a new array.</summary>
1935       <returns>An array containing copies of the elements of the <see cref="T:System.Collections.Generic.List`1" />.</returns>
1936     </member>
1937     <member name="M:System.Collections.Generic.List`1.TrimExcess">
1938       <summary>Sets the capacity to the actual number of elements in the <see cref="T:System.Collections.Generic.List`1" />, if that number is less than a threshold value.</summary>
1939     </member>
1940     <member name="M:System.Collections.Generic.List`1.TrueForAll(System.Predicate{`0})">
1941       <summary>Determines whether every element in the <see cref="T:System.Collections.Generic.List`1" /> matches the conditions defined by the specified predicate.</summary>
1942       <param name="match">The <see cref="T:System.Predicate`1" /> delegate that defines the conditions to check against the elements.</param>
1943       <returns>
1944         <see langword="true" /> if every element in the <see cref="T:System.Collections.Generic.List`1" /> matches the conditions defined by the specified predicate; otherwise, <see langword="false" />. If the list has no elements, the return value is <see langword="true" />.</returns>
1945       <exception cref="T:System.ArgumentNullException">
1946         <paramref name="match" /> is <see langword="null" />.</exception>
1947     </member>
1948     <member name="T:System.Collections.Generic.Queue`1">
1949       <summary>Represents a first-in, first-out collection of objects.</summary>
1950       <typeparam name="T">Specifies the type of elements in the queue.</typeparam>
1951     </member>
1952     <member name="M:System.Collections.Generic.Queue`1.#ctor">
1953       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Queue`1" /> class that is empty and has the default initial capacity.</summary>
1954     </member>
1955     <member name="M:System.Collections.Generic.Queue`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
1956       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Queue`1" /> class that contains elements copied from the specified collection and has sufficient capacity to accommodate the number of elements copied.</summary>
1957       <param name="collection">The collection whose elements are copied to the new <see cref="T:System.Collections.Generic.Queue`1" />.</param>
1958       <exception cref="T:System.ArgumentNullException">
1959         <paramref name="collection" /> is <see langword="null" />.</exception>
1960     </member>
1961     <member name="M:System.Collections.Generic.Queue`1.#ctor(System.Int32)">
1962       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Queue`1" /> class that is empty and has the specified initial capacity.</summary>
1963       <param name="capacity">The initial number of elements that the <see cref="T:System.Collections.Generic.Queue`1" /> can contain.</param>
1964       <exception cref="T:System.ArgumentOutOfRangeException">
1965         <paramref name="capacity" /> is less than zero.</exception>
1966     </member>
1967     <member name="M:System.Collections.Generic.Queue`1.Clear">
1968       <summary>Removes all objects from the <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
1969     </member>
1970     <member name="M:System.Collections.Generic.Queue`1.Contains(`0)">
1971       <summary>Determines whether an element is in the <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
1972       <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.Queue`1" />. The value can be <see langword="null" /> for reference types.</param>
1973       <returns>
1974         <see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.Queue`1" />; otherwise, <see langword="false" />.</returns>
1975     </member>
1976     <member name="M:System.Collections.Generic.Queue`1.CopyTo(`0[],System.Int32)">
1977       <summary>Copies the <see cref="T:System.Collections.Generic.Queue`1" /> elements to an existing one-dimensional <see cref="T:System.Array" />, starting at the specified array index.</summary>
1978       <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.Queue`1" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
1979       <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
1980       <exception cref="T:System.ArgumentNullException">
1981         <paramref name="array" /> is <see langword="null" />.</exception>
1982       <exception cref="T:System.ArgumentOutOfRangeException">
1983         <paramref name="arrayIndex" /> is less than zero.</exception>
1984       <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>
1985     </member>
1986     <member name="P:System.Collections.Generic.Queue`1.Count">
1987       <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
1988       <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.Queue`1" />.</returns>
1989     </member>
1990     <member name="M:System.Collections.Generic.Queue`1.Dequeue">
1991       <summary>Removes and returns the object at the beginning of the <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
1992       <returns>The object that is removed from the beginning of the <see cref="T:System.Collections.Generic.Queue`1" />.</returns>
1993       <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Queue`1" /> is empty.</exception>
1994     </member>
1995     <member name="M:System.Collections.Generic.Queue`1.Enqueue(`0)">
1996       <summary>Adds an object to the end of the <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
1997       <param name="item">The object to add to the <see cref="T:System.Collections.Generic.Queue`1" />. The value can be <see langword="null" /> for reference types.</param>
1998     </member>
1999     <member name="T:System.Collections.Generic.Queue`1.Enumerator">
2000       <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
2001       <typeparam name="T" />
2002     </member>
2003     <member name="P:System.Collections.Generic.Queue`1.Enumerator.Current">
2004       <summary>Gets the element at the current position of the enumerator.</summary>
2005       <returns>The element in the <see cref="T:System.Collections.Generic.Queue`1" /> at the current position of the enumerator.</returns>
2006       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
2007     </member>
2008     <member name="M:System.Collections.Generic.Queue`1.Enumerator.Dispose">
2009       <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.Queue`1.Enumerator" />.</summary>
2010     </member>
2011     <member name="M:System.Collections.Generic.Queue`1.Enumerator.MoveNext">
2012       <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
2013       <returns>
2014         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
2015       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
2016     </member>
2017     <member name="P:System.Collections.Generic.Queue`1.Enumerator.System#Collections#IEnumerator#Current">
2018       <summary>Gets the element at the current position of the enumerator.</summary>
2019       <returns>The element in the collection at the current position of the enumerator.</returns>
2020       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
2021     </member>
2022     <member name="M:System.Collections.Generic.Queue`1.Enumerator.System#Collections#IEnumerator#Reset">
2023       <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
2024       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
2025     </member>
2026     <member name="M:System.Collections.Generic.Queue`1.GetEnumerator">
2027       <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.Queue`1" />.</summary>
2028       <returns>An <see cref="T:System.Collections.Generic.Queue`1.Enumerator" /> for the <see cref="T:System.Collections.Generic.Queue`1" />.</returns>
2029     </member>
2030     <member name="M:System.Collections.Generic.Queue`1.Peek">
2031       <summary>Returns the object at the beginning of the <see cref="T:System.Collections.Generic.Queue`1" /> without removing it.</summary>
2032       <returns>The object at the beginning of the <see cref="T:System.Collections.Generic.Queue`1" />.</returns>
2033       <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Queue`1" /> is empty.</exception>
2034     </member>
2035     <member name="M:System.Collections.Generic.Queue`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
2036       <summary>Returns an enumerator that iterates through a collection.</summary>
2037       <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.</returns>
2038     </member>
2039     <member name="M:System.Collections.Generic.Queue`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
2040       <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
2041       <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" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
2042       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
2043       <exception cref="T:System.ArgumentNullException">
2044         <paramref name="array" /> is <see langword="null" />.</exception>
2045       <exception cref="T:System.ArgumentOutOfRangeException">
2046         <paramref name="index" /> is less than zero.</exception>
2047       <exception cref="T:System.ArgumentException">
2048         <paramref name="array" /> is multidimensional.
2049 -or-
2050 <paramref name="array" /> does not have zero-based indexing.
2051 -or-
2052 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" />.
2053 -or-
2054 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>
2055     </member>
2056     <member name="P:System.Collections.Generic.Queue`1.System#Collections#ICollection#IsSynchronized">
2057       <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
2058       <returns>
2059         <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.Queue`1" />, this property always returns <see langword="false" />.</returns>
2060     </member>
2061     <member name="P:System.Collections.Generic.Queue`1.System#Collections#ICollection#SyncRoot">
2062       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
2063       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.  In the default implementation of <see cref="T:System.Collections.Generic.Queue`1" />, this property always returns the current instance.</returns>
2064     </member>
2065     <member name="M:System.Collections.Generic.Queue`1.System#Collections#IEnumerable#GetEnumerator">
2066       <summary>Returns an enumerator that iterates through a collection.</summary>
2067       <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
2068     </member>
2069     <member name="M:System.Collections.Generic.Queue`1.ToArray">
2070       <summary>Copies the <see cref="T:System.Collections.Generic.Queue`1" /> elements to a new array.</summary>
2071       <returns>A new array containing elements copied from the <see cref="T:System.Collections.Generic.Queue`1" />.</returns>
2072     </member>
2073     <member name="M:System.Collections.Generic.Queue`1.TrimExcess">
2074       <summary>Sets the capacity to the actual number of elements in the <see cref="T:System.Collections.Generic.Queue`1" />, if that number is less than 90 percent of current capacity.</summary>
2075     </member>
2076     <member name="M:System.Collections.Generic.Queue`1.TryDequeue(`0@)">
2077       <param name="result" />
2078     </member>
2079     <member name="M:System.Collections.Generic.Queue`1.TryPeek(`0@)">
2080       <param name="result" />
2081     </member>
2082     <member name="T:System.Collections.Generic.SortedDictionary`2">
2083       <summary>Represents a collection of key/value pairs that are sorted on the key.</summary>
2084       <typeparam name="TKey">The type of the keys in the dictionary.</typeparam>
2085       <typeparam name="TValue">The type of the values in the dictionary.</typeparam>
2086     </member>
2087     <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor">
2088       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> class that is empty and uses the default <see cref="T:System.Collections.Generic.IComparer`1" /> implementation for the key type.</summary>
2089     </member>
2090     <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IComparer{`0})">
2091       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> class that is empty and uses the specified <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to compare keys.</summary>
2092       <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing keys, or <see langword="null" /> to use the default <see cref="T:System.Collections.Generic.Comparer`1" /> for the type of the key.</param>
2093     </member>
2094     <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})">
2095       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IDictionary`2" /> and uses the default <see cref="T:System.Collections.Generic.IComparer`1" /> implementation for the key type.</summary>
2096       <param name="dictionary">The <see cref="T:System.Collections.Generic.IDictionary`2" /> whose elements are copied to the new <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</param>
2097       <exception cref="T:System.ArgumentNullException">
2098         <paramref name="dictionary" /> is <see langword="null" />.</exception>
2099       <exception cref="T:System.ArgumentException">
2100         <paramref name="dictionary" /> contains one or more duplicate keys.</exception>
2101     </member>
2102     <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IComparer{`0})">
2103       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IDictionary`2" /> and uses the specified <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to compare keys.</summary>
2104       <param name="dictionary">The <see cref="T:System.Collections.Generic.IDictionary`2" /> whose elements are copied to the new <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</param>
2105       <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing keys, or <see langword="null" /> to use the default <see cref="T:System.Collections.Generic.Comparer`1" /> for the type of the key.</param>
2106       <exception cref="T:System.ArgumentNullException">
2107         <paramref name="dictionary" /> is <see langword="null" />.</exception>
2108       <exception cref="T:System.ArgumentException">
2109         <paramref name="dictionary" /> contains one or more duplicate keys.</exception>
2110     </member>
2111     <member name="M:System.Collections.Generic.SortedDictionary`2.Add(`0,`1)">
2112       <summary>Adds an element with the specified key and value into the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
2113       <param name="key">The key of the element to add.</param>
2114       <param name="value">The value of the element to add. The value can be <see langword="null" /> for reference types.</param>
2115       <exception cref="T:System.ArgumentNullException">
2116         <paramref name="key" /> is <see langword="null" />.</exception>
2117       <exception cref="T:System.ArgumentException">An element with the same key already exists in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</exception>
2118     </member>
2119     <member name="M:System.Collections.Generic.SortedDictionary`2.Clear">
2120       <summary>Removes all elements from the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
2121     </member>
2122     <member name="P:System.Collections.Generic.SortedDictionary`2.Comparer">
2123       <summary>Gets the <see cref="T:System.Collections.Generic.IComparer`1" /> used to order the elements of the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
2124       <returns>The <see cref="T:System.Collections.Generic.IComparer`1" /> used to order the elements of the <see cref="T:System.Collections.Generic.SortedDictionary`2" /></returns>
2125     </member>
2126     <member name="M:System.Collections.Generic.SortedDictionary`2.ContainsKey(`0)">
2127       <summary>Determines whether the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified key.</summary>
2128       <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</param>
2129       <returns>
2130         <see langword="true" /> if the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified key; otherwise, <see langword="false" />.</returns>
2131       <exception cref="T:System.ArgumentNullException">
2132         <paramref name="key" /> is <see langword="null" />.</exception>
2133     </member>
2134     <member name="M:System.Collections.Generic.SortedDictionary`2.ContainsValue(`1)">
2135       <summary>Determines whether the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified value.</summary>
2136       <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />. The value can be <see langword="null" /> for reference types.</param>
2137       <returns>
2138         <see langword="true" /> if the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified value; otherwise, <see langword="false" />.</returns>
2139     </member>
2140     <member name="M:System.Collections.Generic.SortedDictionary`2.CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
2141       <summary>Copies the elements of the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> to the specified array of <see cref="T:System.Collections.Generic.KeyValuePair`2" /> structures, starting at the specified index.</summary>
2142       <param name="array">The one-dimensional array of <see cref="T:System.Collections.Generic.KeyValuePair`2" /> structures that is the destination of the elements copied from the current <see cref="T:System.Collections.Generic.SortedDictionary`2" /> The array must have zero-based indexing.</param>
2143       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
2144       <exception cref="T:System.ArgumentNullException">
2145         <paramref name="array" /> is <see langword="null" />.</exception>
2146       <exception cref="T:System.ArgumentOutOfRangeException">
2147         <paramref name="index" /> is less than 0.</exception>
2148       <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.SortedDictionary`2" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
2149     </member>
2150     <member name="P:System.Collections.Generic.SortedDictionary`2.Count">
2151       <summary>Gets the number of key/value pairs contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
2152       <returns>The number of key/value pairs contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</returns>
2153     </member>
2154     <member name="T:System.Collections.Generic.SortedDictionary`2.Enumerator">
2155       <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
2156       <typeparam name="TKey" />
2157       <typeparam name="TValue" />
2158     </member>
2159     <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.Current">
2160       <summary>Gets the element at the current position of the enumerator.</summary>
2161       <returns>The element in the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> at the current position of the enumerator.</returns>
2162     </member>
2163     <member name="M:System.Collections.Generic.SortedDictionary`2.Enumerator.Dispose">
2164       <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.SortedDictionary`2.Enumerator" />.</summary>
2165     </member>
2166     <member name="M:System.Collections.Generic.SortedDictionary`2.Enumerator.MoveNext">
2167       <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
2168       <returns>
2169         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
2170       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
2171     </member>
2172     <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Entry">
2173       <summary>Gets the element at the current position of the enumerator as a <see cref="T:System.Collections.DictionaryEntry" /> structure.</summary>
2174       <returns>The element in the collection at the current position of the dictionary, as a <see cref="T:System.Collections.DictionaryEntry" /> structure.</returns>
2175       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
2176     </member>
2177     <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Key">
2178       <summary>Gets the key of the element at the current position of the enumerator.</summary>
2179       <returns>The key of the element in the collection at the current position of the enumerator.</returns>
2180       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
2181     </member>
2182     <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Value">
2183       <summary>Gets the value of the element at the current position of the enumerator.</summary>
2184       <returns>The value of the element in the collection at the current position of the enumerator.</returns>
2185       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
2186     </member>
2187     <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IEnumerator#Current">
2188       <summary>Gets the element at the current position of the enumerator.</summary>
2189       <returns>The element in the collection at the current position of the enumerator.</returns>
2190       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
2191     </member>
2192     <member name="M:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IEnumerator#Reset">
2193       <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
2194       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
2195     </member>
2196     <member name="M:System.Collections.Generic.SortedDictionary`2.GetEnumerator">
2197       <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
2198       <returns>A <see cref="T:System.Collections.Generic.SortedDictionary`2.Enumerator" /> for the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</returns>
2199     </member>
2200     <member name="P:System.Collections.Generic.SortedDictionary`2.Item(`0)">
2201       <summary>Gets or sets the value associated with the specified key.</summary>
2202       <param name="key">The key of the value to get or set.</param>
2203       <returns>The value associated with the specified key. If the specified key is not found, a get operation throws a <see cref="T:System.Collections.Generic.KeyNotFoundException" />, and a set operation creates a new element with the specified key.</returns>
2204       <exception cref="T:System.ArgumentNullException">
2205         <paramref name="key" /> is <see langword="null" />.</exception>
2206       <exception cref="T:System.Collections.Generic.KeyNotFoundException">The property is retrieved and <paramref name="key" /> does not exist in the collection.</exception>
2207     </member>
2208     <member name="T:System.Collections.Generic.SortedDictionary`2.KeyCollection">
2209       <summary>Represents the collection of keys in a <see cref="T:System.Collections.Generic.SortedDictionary`2" />. This class cannot be inherited.</summary>
2210       <typeparam name="TKey" />
2211       <typeparam name="TValue" />
2212     </member>
2213     <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.#ctor(System.Collections.Generic.SortedDictionary{`0,`1})">
2214       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> class that reflects the keys in the specified <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
2215       <param name="dictionary">The <see cref="T:System.Collections.Generic.SortedDictionary`2" /> whose keys are reflected in the new <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />.</param>
2216       <exception cref="T:System.ArgumentNullException">
2217         <paramref name="dictionary" /> is <see langword="null" />.</exception>
2218     </member>
2219     <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.CopyTo(`0[],System.Int32)">
2220       <summary>Copies the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> elements to an existing one-dimensional array, starting at the specified array index.</summary>
2221       <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />. The array must have zero-based indexing.</param>
2222       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
2223       <exception cref="T:System.ArgumentNullException">
2224         <paramref name="array" /> is <see langword="null" />.</exception>
2225       <exception cref="T:System.ArgumentOutOfRangeException">
2226         <paramref name="index" /> is less than 0.</exception>
2227       <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
2228     </member>
2229     <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.Count">
2230       <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />.</summary>
2231       <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />.</returns>
2232     </member>
2233     <member name="T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator">
2234       <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />.</summary>
2235       <typeparam name="TKey" />
2236       <typeparam name="TValue" />
2237     </member>
2238     <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.Current">
2239       <summary>Gets the element at the current position of the enumerator.</summary>
2240       <returns>The element in the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> at the current position of the enumerator.</returns>
2241     </member>
2242     <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.Dispose">
2243       <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator" />.</summary>
2244     </member>
2245     <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.MoveNext">
2246       <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />.</summary>
2247       <returns>
2248         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
2249       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
2250     </member>
2251     <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Current">
2252       <summary>Gets the element at the current position of the enumerator.</summary>
2253       <returns>The element in the collection at the current position of the enumerator.</returns>
2254       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
2255     </member>
2256     <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Reset">
2257       <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
2258       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
2259     </member>
2260     <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.GetEnumerator">
2261       <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />.</summary>
2262       <returns>A <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator" /> structure for the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />.</returns>
2263     </member>
2264     <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#Add(`0)">
2265       <summary>Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1" />.  This implementation always throws a <see cref="T:System.NotSupportedException" />.</summary>
2266       <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
2267       <exception cref="T:System.NotSupportedException">Always thrown; the collection is read-only.</exception>
2268     </member>
2269     <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#Clear">
2270       <summary>Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1" />.  This implementation always throws a <see cref="T:System.NotSupportedException" />.</summary>
2271       <exception cref="T:System.NotSupportedException">Always thrown; the collection is read-only.</exception>
2272     </member>
2273     <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#Contains(`0)">
2274       <summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains the specified value.</summary>
2275       <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
2276       <returns>
2277         <see langword="true" /> if item is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
2278     </member>
2279     <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#IsReadOnly">
2280       <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
2281       <returns>
2282         <see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />, this property always returns <see langword="false" />.</returns>
2283     </member>
2284     <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#Remove(`0)">
2285       <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1" />.  This implementation always throws a <see cref="T:System.NotSupportedException" />.</summary>
2286       <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
2287       <returns>
2288         <see langword="true" /> if item is successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if item is not found in the <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
2289       <exception cref="T:System.NotSupportedException">Always thrown; the collection is read-only.</exception>
2290     </member>
2291     <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#IEnumerable{TKey}#GetEnumerator">
2292       <summary>Returns an enumerator that iterates through the collection.</summary>
2293       <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.</returns>
2294     </member>
2295     <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
2296       <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an array, starting at a particular array index.</summary>
2297       <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.ICollection" />. The array must have zero-based indexing.</param>
2298       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
2299       <exception cref="T:System.ArgumentNullException">
2300         <paramref name="array" /> is <see langword="null" />.</exception>
2301       <exception cref="T:System.ArgumentOutOfRangeException">
2302         <paramref name="index" /> is less than 0.</exception>
2303       <exception cref="T:System.ArgumentException">
2304         <paramref name="array" /> is multidimensional.
2305 -or-
2306 <paramref name="array" /> does not have zero-based indexing.
2307 -or-
2308 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" />.
2309 -or-
2310 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>
2311     </member>
2312     <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#ICollection#IsSynchronized">
2313       <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
2314       <returns>
2315         <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />, this property always returns <see langword="false" />.</returns>
2316     </member>
2317     <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#ICollection#SyncRoot">
2318       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
2319       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.  In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />, this property always returns the current instance.</returns>
2320     </member>
2321     <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#IEnumerable#GetEnumerator">
2322       <summary>Returns an enumerator that iterates through the collection.</summary>
2323       <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
2324     </member>
2325     <member name="P:System.Collections.Generic.SortedDictionary`2.Keys">
2326       <summary>Gets a collection containing the keys in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
2327       <returns>A <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> containing the keys in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</returns>
2328     </member>
2329     <member name="M:System.Collections.Generic.SortedDictionary`2.Remove(`0)">
2330       <summary>Removes the element with the specified key from the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
2331       <param name="key">The key of the element to remove.</param>
2332       <returns>
2333         <see langword="true" /> if the element is successfully removed; otherwise, <see langword="false" />.  This method also returns <see langword="false" /> if <paramref name="key" /> is not found in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</returns>
2334       <exception cref="T:System.ArgumentNullException">
2335         <paramref name="key" /> is <see langword="null" />.</exception>
2336     </member>
2337     <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
2338       <summary>Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
2339       <param name="keyValuePair">The <see cref="T:System.Collections.Generic.KeyValuePair`2" /> structure to add to the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
2340       <exception cref="T:System.ArgumentNullException">
2341         <paramref name="keyValuePair" /> is <see langword="null" />.</exception>
2342       <exception cref="T:System.ArgumentException">An element with the same key already exists in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</exception>
2343     </member>
2344     <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
2345       <summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific key and value.</summary>
2346       <param name="keyValuePair">The <see cref="T:System.Collections.Generic.KeyValuePair`2" /> structure to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
2347       <returns>
2348         <see langword="true" /> if <paramref name="keyValuePair" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
2349     </member>
2350     <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#IsReadOnly">
2351       <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
2352       <returns>
2353         <see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2" />, this property always returns <see langword="false" />.</returns>
2354     </member>
2355     <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
2356       <summary>Removes the first occurrence of the specified element from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
2357       <param name="keyValuePair">The <see cref="T:System.Collections.Generic.KeyValuePair`2" /> structure to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
2358       <returns>
2359         <see langword="true" /> if <paramref name="keyValuePair" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="keyValuePair" /> was not found in the <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
2360     </member>
2361     <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
2362       <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
2363       <returns>An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
2364     </member>
2365     <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
2366       <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
2367       <returns>An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
2368     </member>
2369     <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{TKey@TValue}}#GetEnumerator">
2370       <summary>Returns an enumerator that iterates through a collection.</summary>
2371       <returns>An enumerator that can be used to iterate through the collection.</returns>
2372     </member>
2373     <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Keys">
2374       <summary>Gets a collection containing the keys in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
2375       <returns>A collection containing the keys in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</returns>
2376     </member>
2377     <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Values">
2378       <summary>Gets a collection containing the values in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
2379       <returns>A collection containing the values in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</returns>
2380     </member>
2381     <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
2382       <summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an array, starting at the specified array index.</summary>
2383       <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.ICollection`1" />. The array must have zero-based indexing.</param>
2384       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
2385       <exception cref="T:System.ArgumentNullException">
2386         <paramref name="array" /> is <see langword="null" />.</exception>
2387       <exception cref="T:System.ArgumentOutOfRangeException">
2388         <paramref name="index" /> is less than 0.</exception>
2389       <exception cref="T:System.ArgumentException">
2390         <paramref name="array" /> is multidimensional.
2391 -or-
2392 <paramref name="array" /> does not have zero-based indexing.
2393 -or-
2394 The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.
2395 -or-
2396 The type of the source <see cref="T:System.Collections.Generic.ICollection`1" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
2397     </member>
2398     <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#ICollection#IsSynchronized">
2399       <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
2400       <returns>
2401         <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2" />, this property always returns <see langword="false" />.</returns>
2402     </member>
2403     <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#ICollection#SyncRoot">
2404       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
2405       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</returns>
2406     </member>
2407     <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
2408       <summary>Adds an element with the provided key and value to the <see cref="T:System.Collections.IDictionary" />.</summary>
2409       <param name="key">The object to use as the key of the element to add.</param>
2410       <param name="value">The object to use as the value of the element to add.</param>
2411       <exception cref="T:System.ArgumentNullException">
2412         <paramref name="key" /> is <see langword="null" />.</exception>
2413       <exception cref="T:System.ArgumentException">
2414         <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" />.
2415 -or-
2416 <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.IDictionary" />.
2417 -or-
2418 An element with the same key already exists in the <see cref="T:System.Collections.IDictionary" />.</exception>
2419     </member>
2420     <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Contains(System.Object)">
2421       <summary>Determines whether the <see cref="T:System.Collections.IDictionary" /> contains an element with the specified key.</summary>
2422       <param name="key">The key to locate in the <see cref="T:System.Collections.IDictionary" />.</param>
2423       <returns>
2424         <see langword="true" /> if the <see cref="T:System.Collections.IDictionary" /> contains an element with the key; otherwise, <see langword="false" />.</returns>
2425       <exception cref="T:System.ArgumentNullException">
2426         <paramref name="key" /> is <see langword="null" />.</exception>
2427     </member>
2428     <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#GetEnumerator">
2429       <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.IDictionary" />.</summary>
2430       <returns>An <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.IDictionary" />.</returns>
2431     </member>
2432     <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#IsFixedSize">
2433       <summary>Gets a value indicating whether the <see cref="T:System.Collections.IDictionary" /> has a fixed size.</summary>
2434       <returns>
2435         <see langword="true" /> if the <see cref="T:System.Collections.IDictionary" /> has a fixed size; otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2" />, this property always returns <see langword="false" />.</returns>
2436     </member>
2437     <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#IsReadOnly">
2438       <summary>Gets a value indicating whether the <see cref="T:System.Collections.IDictionary" /> is read-only.</summary>
2439       <returns>
2440         <see langword="true" /> if the <see cref="T:System.Collections.IDictionary" /> is read-only; otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2" />, this property always returns <see langword="false" />.</returns>
2441     </member>
2442     <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Item(System.Object)">
2443       <summary>Gets or sets the element with the specified key.</summary>
2444       <param name="key">The key of the element to get.</param>
2445       <returns>The element with the specified key, or <see langword="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.SortedDictionary`2" />.</returns>
2446       <exception cref="T:System.ArgumentNullException">
2447         <paramref name="key" /> is <see langword="null" />.</exception>
2448       <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" />.
2449 -or-
2450 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>
2451     </member>
2452     <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Keys">
2453       <summary>Gets an <see cref="T:System.Collections.ICollection" /> containing the keys of the <see cref="T:System.Collections.IDictionary" />.</summary>
2454       <returns>An <see cref="T:System.Collections.ICollection" /> containing the keys of the <see cref="T:System.Collections.IDictionary" />.</returns>
2455     </member>
2456     <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Remove(System.Object)">
2457       <summary>Removes the element with the specified key from the <see cref="T:System.Collections.IDictionary" />.</summary>
2458       <param name="key">The key of the element to remove.</param>
2459       <exception cref="T:System.ArgumentNullException">
2460         <paramref name="key" /> is <see langword="null" />.</exception>
2461     </member>
2462     <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Values">
2463       <summary>Gets an <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.IDictionary" />.</summary>
2464       <returns>An <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.IDictionary" />.</returns>
2465     </member>
2466     <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IEnumerable#GetEnumerator">
2467       <summary>Returns an enumerator that iterates through the collection.</summary>
2468       <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
2469     </member>
2470     <member name="M:System.Collections.Generic.SortedDictionary`2.TryGetValue(`0,`1@)">
2471       <summary>Gets the value associated with the specified key.</summary>
2472       <param name="key">The key of the value to get.</param>
2473       <param name="value">When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the <paramref name="value" /> parameter.</param>
2474       <returns>
2475         <see langword="true" /> if the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified key; otherwise, <see langword="false" />.</returns>
2476       <exception cref="T:System.ArgumentNullException">
2477         <paramref name="key" /> is <see langword="null" />.</exception>
2478     </member>
2479     <member name="T:System.Collections.Generic.SortedDictionary`2.ValueCollection">
2480       <summary>Represents the collection of values in a <see cref="T:System.Collections.Generic.SortedDictionary`2" />. This class cannot be inherited.</summary>
2481       <typeparam name="TKey" />
2482       <typeparam name="TValue" />
2483     </member>
2484     <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.#ctor(System.Collections.Generic.SortedDictionary{`0,`1})">
2485       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> class that reflects the values in the specified <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
2486       <param name="dictionary">The <see cref="T:System.Collections.Generic.SortedDictionary`2" /> whose values are reflected in the new <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />.</param>
2487       <exception cref="T:System.ArgumentNullException">
2488         <paramref name="dictionary" /> is <see langword="null" />.</exception>
2489     </member>
2490     <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.CopyTo(`1[],System.Int32)">
2491       <summary>Copies the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> elements to an existing one-dimensional array, starting at the specified array index.</summary>
2492       <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />. The array must have zero-based indexing.</param>
2493       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
2494       <exception cref="T:System.ArgumentNullException">
2495         <paramref name="array" /> is <see langword="null" />.</exception>
2496       <exception cref="T:System.ArgumentOutOfRangeException">
2497         <paramref name="index" /> is less than 0.</exception>
2498       <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
2499     </member>
2500     <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.Count">
2501       <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />.</summary>
2502       <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />.</returns>
2503     </member>
2504     <member name="T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator">
2505       <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />.</summary>
2506       <typeparam name="TKey" />
2507       <typeparam name="TValue" />
2508     </member>
2509     <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.Current">
2510       <summary>Gets the element at the current position of the enumerator.</summary>
2511       <returns>The element in the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> at the current position of the enumerator.</returns>
2512     </member>
2513     <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.Dispose">
2514       <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator" />.</summary>
2515     </member>
2516     <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.MoveNext">
2517       <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />.</summary>
2518       <returns>
2519         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
2520       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
2521     </member>
2522     <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Current">
2523       <summary>Gets the element at the current position of the enumerator.</summary>
2524       <returns>The element in the collection at the current position of the enumerator.</returns>
2525       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
2526     </member>
2527     <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Reset">
2528       <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
2529       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
2530     </member>
2531     <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.GetEnumerator">
2532       <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />.</summary>
2533       <returns>A <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator" /> structure for the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />.</returns>
2534     </member>
2535     <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#Add(`1)">
2536       <summary>Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1" />. This implementation always throws a <see cref="T:System.NotSupportedException" />.</summary>
2537       <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
2538       <exception cref="T:System.NotSupportedException">Always thrown; the collection is read-only.</exception>
2539     </member>
2540     <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#Clear">
2541       <summary>Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1" />. This implementation always throws a <see cref="T:System.NotSupportedException" />.</summary>
2542       <exception cref="T:System.NotSupportedException">Always thrown; the collection is read-only.</exception>
2543     </member>
2544     <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#Contains(`1)">
2545       <summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specified value.</summary>
2546       <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
2547       <returns>
2548         <see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
2549     </member>
2550     <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#IsReadOnly">
2551       <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
2552       <returns>
2553         <see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />, this property always returns <see langword="false" />.</returns>
2554     </member>
2555     <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#Remove(`1)">
2556       <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1" />. This implementation always throws a <see cref="T:System.NotSupportedException" />.</summary>
2557       <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
2558       <returns>
2559         <see langword="true" /> if <paramref name="item" /> is successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="item" /> is not found in the <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
2560       <exception cref="T:System.NotSupportedException">Always thrown; the collection is read-only.</exception>
2561     </member>
2562     <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#IEnumerable{TValue}#GetEnumerator">
2563       <summary>Returns an enumerator that iterates through the collection.</summary>
2564       <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.</returns>
2565     </member>
2566     <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
2567       <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an array, starting at a particular array index.</summary>
2568       <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.ICollection" />. The array must have zero-based indexing.</param>
2569       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
2570       <exception cref="T:System.ArgumentNullException">
2571         <paramref name="array" /> is <see langword="null" />.</exception>
2572       <exception cref="T:System.ArgumentOutOfRangeException">
2573         <paramref name="index" /> is less than 0.</exception>
2574       <exception cref="T:System.ArgumentException">
2575         <paramref name="array" /> is multidimensional.
2576 -or-
2577 <paramref name="array" /> does not have zero-based indexing.
2578 -or-
2579 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" />.
2580 -or-
2581 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>
2582     </member>
2583     <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#ICollection#IsSynchronized">
2584       <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
2585       <returns>
2586         <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />, this property always returns <see langword="false" />.</returns>
2587     </member>
2588     <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#ICollection#SyncRoot">
2589       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
2590       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.  In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />, this property always returns the current instance.</returns>
2591     </member>
2592     <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#IEnumerable#GetEnumerator">
2593       <summary>Returns an enumerator that iterates through the collection.</summary>
2594       <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
2595     </member>
2596     <member name="P:System.Collections.Generic.SortedDictionary`2.Values">
2597       <summary>Gets a collection containing the values in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</summary>
2598       <returns>A <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> containing the values in the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</returns>
2599     </member>
2600     <member name="T:System.Collections.Generic.SortedList`2">
2601       <summary>Represents a collection of key/value pairs that are sorted by key based on the associated <see cref="T:System.Collections.Generic.IComparer`1" /> implementation.</summary>
2602       <typeparam name="TKey">The type of keys in the collection.</typeparam>
2603       <typeparam name="TValue">The type of values in the collection.</typeparam>
2604     </member>
2605     <member name="M:System.Collections.Generic.SortedList`2.#ctor">
2606       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedList`2" /> class that is empty, has the default initial capacity, and uses the default <see cref="T:System.Collections.Generic.IComparer`1" />.</summary>
2607     </member>
2608     <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IComparer{`0})">
2609       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedList`2" /> class that is empty, has the default initial capacity, and uses the specified <see cref="T:System.Collections.Generic.IComparer`1" />.</summary>
2610       <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing keys.
2611 -or-
2612 <see langword="null" /> to use the default <see cref="T:System.Collections.Generic.Comparer`1" /> for the type of the key.</param>
2613     </member>
2614     <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})">
2615       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedList`2" /> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IDictionary`2" />, has sufficient capacity to accommodate the number of elements copied, and uses the default <see cref="T:System.Collections.Generic.IComparer`1" />.</summary>
2616       <param name="dictionary">The <see cref="T:System.Collections.Generic.IDictionary`2" /> whose elements are copied to the new <see cref="T:System.Collections.Generic.SortedList`2" />.</param>
2617       <exception cref="T:System.ArgumentNullException">
2618         <paramref name="dictionary" /> is <see langword="null" />.</exception>
2619       <exception cref="T:System.ArgumentException">
2620         <paramref name="dictionary" /> contains one or more duplicate keys.</exception>
2621     </member>
2622     <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IComparer{`0})">
2623       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedList`2" /> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IDictionary`2" />, has sufficient capacity to accommodate the number of elements copied, and uses the specified <see cref="T:System.Collections.Generic.IComparer`1" />.</summary>
2624       <param name="dictionary">The <see cref="T:System.Collections.Generic.IDictionary`2" /> whose elements are copied to the new <see cref="T:System.Collections.Generic.SortedList`2" />.</param>
2625       <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing keys.
2626 -or-
2627 <see langword="null" /> to use the default <see cref="T:System.Collections.Generic.Comparer`1" /> for the type of the key.</param>
2628       <exception cref="T:System.ArgumentNullException">
2629         <paramref name="dictionary" /> is <see langword="null" />.</exception>
2630       <exception cref="T:System.ArgumentException">
2631         <paramref name="dictionary" /> contains one or more duplicate keys.</exception>
2632     </member>
2633     <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Int32)">
2634       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedList`2" /> class that is empty, has the specified initial capacity, and uses the default <see cref="T:System.Collections.Generic.IComparer`1" />.</summary>
2635       <param name="capacity">The initial number of elements that the <see cref="T:System.Collections.Generic.SortedList`2" /> can contain.</param>
2636       <exception cref="T:System.ArgumentOutOfRangeException">
2637         <paramref name="capacity" /> is less than zero.</exception>
2638     </member>
2639     <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Int32,System.Collections.Generic.IComparer{`0})">
2640       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedList`2" /> class that is empty, has the specified initial capacity, and uses the specified <see cref="T:System.Collections.Generic.IComparer`1" />.</summary>
2641       <param name="capacity">The initial number of elements that the <see cref="T:System.Collections.Generic.SortedList`2" /> can contain.</param>
2642       <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1" /> implementation to use when comparing keys.
2643 -or-
2644 <see langword="null" /> to use the default <see cref="T:System.Collections.Generic.Comparer`1" /> for the type of the key.</param>
2645       <exception cref="T:System.ArgumentOutOfRangeException">
2646         <paramref name="capacity" /> is less than zero.</exception>
2647     </member>
2648     <member name="M:System.Collections.Generic.SortedList`2.Add(`0,`1)">
2649       <summary>Adds an element with the specified key and value into the <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
2650       <param name="key">The key of the element to add.</param>
2651       <param name="value">The value of the element to add. The value can be <see langword="null" /> for reference types.</param>
2652       <exception cref="T:System.ArgumentNullException">
2653         <paramref name="key" /> is <see langword="null" />.</exception>
2654       <exception cref="T:System.ArgumentException">An element with the same key already exists in the <see cref="T:System.Collections.Generic.SortedList`2" />.</exception>
2655     </member>
2656     <member name="P:System.Collections.Generic.SortedList`2.Capacity">
2657       <summary>Gets or sets the number of elements that the <see cref="T:System.Collections.Generic.SortedList`2" /> can contain.</summary>
2658       <returns>The number of elements that the <see cref="T:System.Collections.Generic.SortedList`2" /> can contain.</returns>
2659       <exception cref="T:System.ArgumentOutOfRangeException">
2660         <see cref="P:System.Collections.Generic.SortedList`2.Capacity" /> is set to a value that is less than <see cref="P:System.Collections.Generic.SortedList`2.Count" />.</exception>
2661       <exception cref="T:System.OutOfMemoryException">There is not enough memory available on the system.</exception>
2662     </member>
2663     <member name="M:System.Collections.Generic.SortedList`2.Clear">
2664       <summary>Removes all elements from the <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
2665     </member>
2666     <member name="P:System.Collections.Generic.SortedList`2.Comparer">
2667       <summary>Gets the <see cref="T:System.Collections.Generic.IComparer`1" /> for the sorted list.</summary>
2668       <returns>The <see cref="T:System.IComparable`1" /> for the current <see cref="T:System.Collections.Generic.SortedList`2" />.</returns>
2669     </member>
2670     <member name="M:System.Collections.Generic.SortedList`2.ContainsKey(`0)">
2671       <summary>Determines whether the <see cref="T:System.Collections.Generic.SortedList`2" /> contains a specific key.</summary>
2672       <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.SortedList`2" />.</param>
2673       <returns>
2674         <see langword="true" /> if the <see cref="T:System.Collections.Generic.SortedList`2" /> contains an element with the specified key; otherwise, <see langword="false" />.</returns>
2675       <exception cref="T:System.ArgumentNullException">
2676         <paramref name="key" /> is <see langword="null" />.</exception>
2677     </member>
2678     <member name="M:System.Collections.Generic.SortedList`2.ContainsValue(`1)">
2679       <summary>Determines whether the <see cref="T:System.Collections.Generic.SortedList`2" /> contains a specific value.</summary>
2680       <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.SortedList`2" />. The value can be <see langword="null" /> for reference types.</param>
2681       <returns>
2682         <see langword="true" /> if the <see cref="T:System.Collections.Generic.SortedList`2" /> contains an element with the specified value; otherwise, <see langword="false" />.</returns>
2683     </member>
2684     <member name="P:System.Collections.Generic.SortedList`2.Count">
2685       <summary>Gets the number of key/value pairs contained in the <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
2686       <returns>The number of key/value pairs contained in the <see cref="T:System.Collections.Generic.SortedList`2" />.</returns>
2687     </member>
2688     <member name="M:System.Collections.Generic.SortedList`2.GetEnumerator">
2689       <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
2690       <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> of type <see cref="T:System.Collections.Generic.KeyValuePair`2" /> for the <see cref="T:System.Collections.Generic.SortedList`2" />.</returns>
2691     </member>
2692     <member name="M:System.Collections.Generic.SortedList`2.IndexOfKey(`0)">
2693       <summary>Searches for the specified key and returns the zero-based index within the entire <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
2694       <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.SortedList`2" />.</param>
2695       <returns>The zero-based index of <paramref name="key" /> within the entire <see cref="T:System.Collections.Generic.SortedList`2" />, if found; otherwise, -1.</returns>
2696       <exception cref="T:System.ArgumentNullException">
2697         <paramref name="key" /> is <see langword="null" />.</exception>
2698     </member>
2699     <member name="M:System.Collections.Generic.SortedList`2.IndexOfValue(`1)">
2700       <summary>Searches for the specified value and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
2701       <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.SortedList`2" />.  The value can be <see langword="null" /> for reference types.</param>
2702       <returns>The zero-based index of the first occurrence of <paramref name="value" /> within the entire <see cref="T:System.Collections.Generic.SortedList`2" />, if found; otherwise, -1.</returns>
2703     </member>
2704     <member name="P:System.Collections.Generic.SortedList`2.Item(`0)">
2705       <summary>Gets or sets the value associated with the specified key.</summary>
2706       <param name="key">The key whose value to get or set.</param>
2707       <returns>The value associated with the specified key. If the specified key is not found, a get operation throws a <see cref="T:System.Collections.Generic.KeyNotFoundException" /> and a set operation creates a new element using the specified key.</returns>
2708       <exception cref="T:System.ArgumentNullException">
2709         <paramref name="key" /> is <see langword="null" />.</exception>
2710       <exception cref="T:System.Collections.Generic.KeyNotFoundException">The property is retrieved and <paramref name="key" /> does not exist in the collection.</exception>
2711     </member>
2712     <member name="P:System.Collections.Generic.SortedList`2.Keys">
2713       <summary>Gets a collection containing the keys in the <see cref="T:System.Collections.Generic.SortedList`2" />, in sorted order.</summary>
2714       <returns>A <see cref="T:System.Collections.Generic.IList`1" /> containing the keys in the <see cref="T:System.Collections.Generic.SortedList`2" />.</returns>
2715     </member>
2716     <member name="M:System.Collections.Generic.SortedList`2.Remove(`0)">
2717       <summary>Removes the element with the specified key from the <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
2718       <param name="key">The key of the element to remove.</param>
2719       <returns>
2720         <see langword="true" /> if the element is successfully removed; otherwise, <see langword="false" />.  This method also returns <see langword="false" /> if <paramref name="key" /> was not found in the original <see cref="T:System.Collections.Generic.SortedList`2" />.</returns>
2721       <exception cref="T:System.ArgumentNullException">
2722         <paramref name="key" /> is <see langword="null" />.</exception>
2723     </member>
2724     <member name="M:System.Collections.Generic.SortedList`2.RemoveAt(System.Int32)">
2725       <summary>Removes the element at the specified index of the <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
2726       <param name="index">The zero-based index of the element to remove.</param>
2727       <exception cref="T:System.ArgumentOutOfRangeException">
2728         <paramref name="index" /> is less than zero.
2729 -or-
2730 <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.Generic.SortedList`2.Count" />.</exception>
2731     </member>
2732     <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
2733       <summary>Adds a key/value pair to the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
2734       <param name="keyValuePair">The <see cref="T:System.Collections.Generic.KeyValuePair`2" /> to add to the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
2735     </member>
2736     <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
2737       <summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific element.</summary>
2738       <param name="keyValuePair">The <see cref="T:System.Collections.Generic.KeyValuePair`2" /> to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
2739       <returns>
2740         <see langword="true" /> if <paramref name="keyValuePair" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
2741     </member>
2742     <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
2743       <summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
2744       <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.ICollection`1" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
2745       <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
2746       <exception cref="T:System.ArgumentNullException">
2747         <paramref name="array" /> is <see langword="null" />.</exception>
2748       <exception cref="T:System.ArgumentOutOfRangeException">
2749         <paramref name="arrayIndex" /> is less than zero.</exception>
2750       <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
2751     </member>
2752     <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#IsReadOnly">
2753       <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
2754       <returns>
2755         <see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />. In the default implementation of <see cref="T:System.Collections.Generic.SortedList`2" />, this property always returns <see langword="false" />.</returns>
2756     </member>
2757     <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey@TValue}}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
2758       <summary>Removes the first occurrence of a specific key/value pair from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
2759       <param name="keyValuePair">The <see cref="T:System.Collections.Generic.KeyValuePair`2" /> to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
2760       <returns>
2761         <see langword="true" /> if <paramref name="keyValuePair" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="keyValuePair" /> was not found in the original <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
2762     </member>
2763     <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
2764       <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
2765       <returns>An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
2766     </member>
2767     <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
2768       <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2" />.</summary>
2769       <returns>An object containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
2770     </member>
2771     <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{TKey@TValue}}#GetEnumerator">
2772       <summary>Returns an enumerator that iterates through a collection.</summary>
2773       <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.</returns>
2774     </member>
2775     <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Keys">
2776       <summary>Gets an enumerable collection that contains the keys in the read-only dictionary.</summary>
2777       <returns>An enumerable collection that contains the keys in the read-only dictionary.</returns>
2778     </member>
2779     <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Values">
2780       <summary>Gets an enumerable collection that contains the values in the read-only dictionary.</summary>
2781       <returns>An enumerable collection that contains the values in the read-only dictionary.</returns>
2782     </member>
2783     <member name="M:System.Collections.Generic.SortedList`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
2784       <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
2785       <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" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
2786       <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
2787       <exception cref="T:System.ArgumentNullException">
2788         <paramref name="array" /> is <see langword="null" />.</exception>
2789       <exception cref="T:System.ArgumentOutOfRangeException">
2790         <paramref name="arrayIndex" /> is less than zero.</exception>
2791       <exception cref="T:System.ArgumentException">
2792         <paramref name="array" /> is multidimensional.
2793 -or-
2794 <paramref name="array" /> does not have zero-based indexing.
2795 -or-
2796 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" />.
2797 -or-
2798 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>
2799     </member>
2800     <member name="P:System.Collections.Generic.SortedList`2.System#Collections#ICollection#IsSynchronized">
2801       <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
2802       <returns>
2803         <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.SortedList`2" />, this property always returns <see langword="false" />.</returns>
2804     </member>
2805     <member name="P:System.Collections.Generic.SortedList`2.System#Collections#ICollection#SyncRoot">
2806       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
2807       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.  In the default implementation of <see cref="T:System.Collections.Generic.SortedList`2" />, this property always returns the current instance.</returns>
2808     </member>
2809     <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
2810       <summary>Adds an element with the provided key and value to the <see cref="T:System.Collections.IDictionary" />.</summary>
2811       <param name="key">The <see cref="T:System.Object" /> to use as the key of the element to add.</param>
2812       <param name="value">The <see cref="T:System.Object" /> to use as the value of the element to add.</param>
2813       <exception cref="T:System.ArgumentNullException">
2814         <paramref name="key" /> is <see langword="null" />.</exception>
2815       <exception cref="T:System.ArgumentException">
2816         <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" />.
2817 -or-
2818 <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.IDictionary" />.
2819 -or-
2820 An element with the same key already exists in the <see cref="T:System.Collections.IDictionary" />.</exception>
2821     </member>
2822     <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Contains(System.Object)">
2823       <summary>Determines whether the <see cref="T:System.Collections.IDictionary" /> contains an element with the specified key.</summary>
2824       <param name="key">The key to locate in the <see cref="T:System.Collections.IDictionary" />.</param>
2825       <returns>
2826         <see langword="true" /> if the <see cref="T:System.Collections.IDictionary" /> contains an element with the key; otherwise, <see langword="false" />.</returns>
2827       <exception cref="T:System.ArgumentNullException">
2828         <paramref name="key" /> is <see langword="null" />.</exception>
2829     </member>
2830     <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#GetEnumerator">
2831       <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.IDictionary" />.</summary>
2832       <returns>An <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.IDictionary" />.</returns>
2833     </member>
2834     <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#IsFixedSize">
2835       <summary>Gets a value indicating whether the <see cref="T:System.Collections.IDictionary" /> has a fixed size.</summary>
2836       <returns>
2837         <see langword="true" /> if the <see cref="T:System.Collections.IDictionary" /> has a fixed size; otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.SortedList`2" />, this property always returns <see langword="false" />.</returns>
2838     </member>
2839     <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#IsReadOnly">
2840       <summary>Gets a value indicating whether the <see cref="T:System.Collections.IDictionary" /> is read-only.</summary>
2841       <returns>
2842         <see langword="true" /> if the <see cref="T:System.Collections.IDictionary" /> is read-only; otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.SortedList`2" />, this property always returns <see langword="false" />.</returns>
2843     </member>
2844     <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Item(System.Object)">
2845       <summary>Gets or sets the element with the specified key.</summary>
2846       <param name="key">The key of the element to get or set.</param>
2847       <returns>The element with the specified key, or <see langword="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>
2848       <exception cref="T:System.ArgumentNullException">
2849         <paramref name="key" /> is <see langword="null" />.</exception>
2850       <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" />.
2851 -or-
2852 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>
2853     </member>
2854     <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Keys">
2855       <summary>Gets an <see cref="T:System.Collections.ICollection" /> containing the keys of the <see cref="T:System.Collections.IDictionary" />.</summary>
2856       <returns>An <see cref="T:System.Collections.ICollection" /> containing the keys of the <see cref="T:System.Collections.IDictionary" />.</returns>
2857     </member>
2858     <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Remove(System.Object)">
2859       <summary>Removes the element with the specified key from the <see cref="T:System.Collections.IDictionary" />.</summary>
2860       <param name="key">The key of the element to remove.</param>
2861       <exception cref="T:System.ArgumentNullException">
2862         <paramref name="key" /> is <see langword="null" />.</exception>
2863     </member>
2864     <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Values">
2865       <summary>Gets an <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.IDictionary" />.</summary>
2866       <returns>An <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.IDictionary" />.</returns>
2867     </member>
2868     <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IEnumerable#GetEnumerator">
2869       <summary>Returns an enumerator that iterates through a collection.</summary>
2870       <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
2871     </member>
2872     <member name="M:System.Collections.Generic.SortedList`2.TrimExcess">
2873       <summary>Sets the capacity to the actual number of elements in the <see cref="T:System.Collections.Generic.SortedList`2" />, if that number is less than 90 percent of current capacity.</summary>
2874     </member>
2875     <member name="M:System.Collections.Generic.SortedList`2.TryGetValue(`0,`1@)">
2876       <summary>Gets the value associated with the specified key.</summary>
2877       <param name="key">The key whose value to get.</param>
2878       <param name="value">When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the <paramref name="value" /> parameter. This parameter is passed uninitialized.</param>
2879       <returns>
2880         <see langword="true" /> if the <see cref="T:System.Collections.Generic.SortedList`2" /> contains an element with the specified key; otherwise, <see langword="false" />.</returns>
2881       <exception cref="T:System.ArgumentNullException">
2882         <paramref name="key" /> is <see langword="null" />.</exception>
2883     </member>
2884     <member name="P:System.Collections.Generic.SortedList`2.Values">
2885       <summary>Gets a collection containing the values in the <see cref="T:System.Collections.Generic.SortedList`2" />.</summary>
2886       <returns>A <see cref="T:System.Collections.Generic.IList`1" /> containing the values in the <see cref="T:System.Collections.Generic.SortedList`2" />.</returns>
2887     </member>
2888     <member name="T:System.Collections.Generic.SortedSet`1">
2889       <summary>Represents a collection of objects that is maintained in sorted order.</summary>
2890       <typeparam name="T">The type of elements in the set.</typeparam>
2891     </member>
2892     <member name="M:System.Collections.Generic.SortedSet`1.#ctor">
2893       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedSet`1" /> class.</summary>
2894     </member>
2895     <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IComparer{`0})">
2896       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedSet`1" /> class that uses a specified comparer.</summary>
2897       <param name="comparer">The default comparer to use for comparing objects.</param>
2898       <exception cref="T:System.ArgumentNullException">
2899         <paramref name="comparer" /> is <see langword="null" />.</exception>
2900     </member>
2901     <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
2902       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedSet`1" /> class that contains elements copied from a specified enumerable collection.</summary>
2903       <param name="collection">The enumerable collection to be copied.</param>
2904     </member>
2905     <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IComparer{`0})">
2906       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedSet`1" /> class that contains elements copied from a specified enumerable collection and that uses a specified comparer.</summary>
2907       <param name="collection">The enumerable collection to be copied.</param>
2908       <param name="comparer">The default comparer to use for comparing objects.</param>
2909       <exception cref="T:System.ArgumentNullException">
2910         <paramref name="collection" /> is <see langword="null" />.</exception>
2911     </member>
2912     <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
2913       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedSet`1" /> class that contains serialized data.</summary>
2914       <param name="info">The object that contains the information that is required to serialize the <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
2915       <param name="context">The structure that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
2916     </member>
2917     <member name="M:System.Collections.Generic.SortedSet`1.Add(`0)">
2918       <summary>Adds an element to the set and returns a value that indicates if it was successfully added.</summary>
2919       <param name="item">The element to add to the set.</param>
2920       <returns>
2921         <see langword="true" /> if <paramref name="item" /> is added to the set; otherwise, <see langword="false" />.</returns>
2922     </member>
2923     <member name="M:System.Collections.Generic.SortedSet`1.Clear">
2924       <summary>Removes all elements from the set.</summary>
2925     </member>
2926     <member name="P:System.Collections.Generic.SortedSet`1.Comparer">
2927       <summary>Gets the <see cref="T:System.Collections.Generic.IComparer`1" /> object that is used to order the values in the <see cref="T:System.Collections.Generic.SortedSet`1" />.</summary>
2928       <returns>The comparer that is used to order the values in the <see cref="T:System.Collections.Generic.SortedSet`1" />.</returns>
2929     </member>
2930     <member name="M:System.Collections.Generic.SortedSet`1.Contains(`0)">
2931       <summary>Determines whether the set contains a specific element.</summary>
2932       <param name="item">The element to locate in the set.</param>
2933       <returns>
2934         <see langword="true" /> if the set contains <paramref name="item" />; otherwise, <see langword="false" />.</returns>
2935     </member>
2936     <member name="M:System.Collections.Generic.SortedSet`1.CopyTo(`0[])">
2937       <summary>Copies the complete <see cref="T:System.Collections.Generic.SortedSet`1" /> to a compatible one-dimensional array, starting at the beginning of the target array.</summary>
2938       <param name="array">A one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedSet`1" />.</param>
2939       <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.SortedSet`1" /> exceeds the number of elements that the destination array can contain.</exception>
2940       <exception cref="T:System.ArgumentNullException">
2941         <paramref name="array" /> is <see langword="null" />.</exception>
2942     </member>
2943     <member name="M:System.Collections.Generic.SortedSet`1.CopyTo(`0[],System.Int32)">
2944       <summary>Copies the complete <see cref="T:System.Collections.Generic.SortedSet`1" /> to a compatible one-dimensional array, starting at the specified array index.</summary>
2945       <param name="array">A one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedSet`1" />. The array must have zero-based indexing.</param>
2946       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
2947       <exception cref="T:System.ArgumentException">The number of elements in the source array is greater than the available space from <paramref name="index" /> to the end of the destination array.</exception>
2948       <exception cref="T:System.ArgumentNullException">
2949         <paramref name="array" /> is <see langword="null" />.</exception>
2950       <exception cref="T:System.ArgumentOutOfRangeException">
2951         <paramref name="index" /> is less than zero.</exception>
2952     </member>
2953     <member name="M:System.Collections.Generic.SortedSet`1.CopyTo(`0[],System.Int32,System.Int32)">
2954       <summary>Copies a specified number of elements from <see cref="T:System.Collections.Generic.SortedSet`1" /> to a compatible one-dimensional array, starting at the specified array index.</summary>
2955       <param name="array">A one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedSet`1" />. The array must have zero-based indexing.</param>
2956       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
2957       <param name="count">The number of elements to copy.</param>
2958       <exception cref="T:System.ArgumentException">The number of elements in the source array is greater than the available space from <paramref name="index" /> to the end of the destination array.</exception>
2959       <exception cref="T:System.ArgumentNullException">
2960         <paramref name="array" /> is <see langword="null" />.</exception>
2961       <exception cref="T:System.ArgumentOutOfRangeException">
2962         <paramref name="index" /> is less than zero.
2963 -or-
2964 <paramref name="count" /> is less than zero.</exception>
2965     </member>
2966     <member name="P:System.Collections.Generic.SortedSet`1.Count">
2967       <summary>Gets the number of elements in the <see cref="T:System.Collections.Generic.SortedSet`1" />.</summary>
2968       <returns>The number of elements in the <see cref="T:System.Collections.Generic.SortedSet`1" />.</returns>
2969     </member>
2970     <member name="M:System.Collections.Generic.SortedSet`1.CreateSetComparer">
2971       <summary>Returns an <see cref="T:System.Collections.IEqualityComparer" /> object that can be used to create a collection that contains individual sets.</summary>
2972       <returns>A comparer for creating a collection of sets.</returns>
2973     </member>
2974     <member name="M:System.Collections.Generic.SortedSet`1.CreateSetComparer(System.Collections.Generic.IEqualityComparer{`0})">
2975       <summary>Returns an <see cref="T:System.Collections.IEqualityComparer" /> object, according to a specified comparer, that can be used to create a collection that contains individual sets.</summary>
2976       <param name="memberEqualityComparer">The comparer to use for creating the returned comparer.</param>
2977       <returns>A comparer for creating a collection of sets.</returns>
2978     </member>
2979     <member name="T:System.Collections.Generic.SortedSet`1.Enumerator">
2980       <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</summary>
2981       <typeparam name="T" />
2982     </member>
2983     <member name="P:System.Collections.Generic.SortedSet`1.Enumerator.Current">
2984       <summary>Gets the element at the current position of the enumerator.</summary>
2985       <returns>The element in the collection at the current position of the enumerator.</returns>
2986     </member>
2987     <member name="M:System.Collections.Generic.SortedSet`1.Enumerator.Dispose">
2988       <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.SortedSet`1.Enumerator" />.</summary>
2989     </member>
2990     <member name="M:System.Collections.Generic.SortedSet`1.Enumerator.MoveNext">
2991       <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.SortedSet`1" /> collection.</summary>
2992       <returns>
2993         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
2994       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
2995     </member>
2996     <member name="P:System.Collections.Generic.SortedSet`1.Enumerator.System#Collections#IEnumerator#Current">
2997       <summary>Gets the element at the current position of the enumerator.</summary>
2998       <returns>The element in the collection at the current position of the enumerator.</returns>
2999       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
3000     </member>
3001     <member name="M:System.Collections.Generic.SortedSet`1.Enumerator.System#Collections#IEnumerator#Reset">
3002       <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
3003       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
3004     </member>
3005     <member name="M:System.Collections.Generic.SortedSet`1.Enumerator.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)">
3006       <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and raises the deserialization event when the deserialization is complete.</summary>
3007       <param name="sender">The source of the deserialization event.</param>
3008       <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Generic.SortedSet`1" /> instance is invalid.</exception>
3009     </member>
3010     <member name="M:System.Collections.Generic.SortedSet`1.Enumerator.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
3011       <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and returns the data needed to serialize the <see cref="T:System.Collections.Generic.SortedSet`1" /> instance.</summary>
3012       <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information required to serialize the <see cref="T:System.Collections.Generic.SortedSet`1" /> instance.</param>
3013       <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.SortedSet`1" /> instance.</param>
3014       <exception cref="T:System.ArgumentNullException">
3015         <paramref name="info" /> is <see langword="null" />.</exception>
3016     </member>
3017     <member name="M:System.Collections.Generic.SortedSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0})">
3018       <summary>Removes all elements that are in a specified collection from the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</summary>
3019       <param name="other">The collection of items to remove from the <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
3020       <exception cref="T:System.ArgumentNullException">
3021         <paramref name="other" /> is <see langword="null" />.</exception>
3022     </member>
3023     <member name="M:System.Collections.Generic.SortedSet`1.GetEnumerator">
3024       <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.SortedSet`1" />.</summary>
3025       <returns>An enumerator that iterates through the <see cref="T:System.Collections.Generic.SortedSet`1" /> in sorted order.</returns>
3026     </member>
3027     <member name="M:System.Collections.Generic.SortedSet`1.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
3028       <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and returns the data that you must have to serialize a <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</summary>
3029       <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information that is required to serialize the <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
3030       <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
3031       <exception cref="T:System.ArgumentNullException">
3032         <paramref name="info" /> is <see langword="null" />.</exception>
3033     </member>
3034     <member name="M:System.Collections.Generic.SortedSet`1.GetViewBetween(`0,`0)">
3035       <summary>Returns a view of a subset in a <see cref="T:System.Collections.Generic.SortedSet`1" />.</summary>
3036       <param name="lowerValue">The lowest desired value in the view.</param>
3037       <param name="upperValue">The highest desired value in the view.</param>
3038       <returns>A subset view that contains only the values in the specified range.</returns>
3039       <exception cref="T:System.ArgumentException">
3040         <paramref name="lowerValue" /> is more than <paramref name="upperValue" /> according to the comparer.</exception>
3041       <exception cref="T:System.ArgumentOutOfRangeException">A tried operation on the view was outside the range specified by <paramref name="lowerValue" /> and <paramref name="upperValue" />.</exception>
3042     </member>
3043     <member name="M:System.Collections.Generic.SortedSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0})">
3044       <summary>Modifies the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object so that it contains only elements that are also in a specified collection.</summary>
3045       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
3046       <exception cref="T:System.ArgumentNullException">
3047         <paramref name="other" /> is <see langword="null" />.</exception>
3048     </member>
3049     <member name="M:System.Collections.Generic.SortedSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
3050       <summary>Determines whether a <see cref="T:System.Collections.Generic.SortedSet`1" /> object is a proper subset of the specified collection.</summary>
3051       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
3052       <returns>
3053         <see langword="true" /> if the <see cref="T:System.Collections.Generic.SortedSet`1" /> object is a proper subset of <paramref name="other" />; otherwise, <see langword="false" />.</returns>
3054       <exception cref="T:System.ArgumentNullException">
3055         <paramref name="other" /> is <see langword="null" />.</exception>
3056     </member>
3057     <member name="M:System.Collections.Generic.SortedSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
3058       <summary>Determines whether a <see cref="T:System.Collections.Generic.SortedSet`1" /> object is a proper superset of the specified collection.</summary>
3059       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
3060       <returns>
3061         <see langword="true" /> if the <see cref="T:System.Collections.Generic.SortedSet`1" /> object is a proper superset of <paramref name="other" />; otherwise, <see langword="false" />.</returns>
3062       <exception cref="T:System.ArgumentNullException">
3063         <paramref name="other" /> is <see langword="null" />.</exception>
3064     </member>
3065     <member name="M:System.Collections.Generic.SortedSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
3066       <summary>Determines whether a <see cref="T:System.Collections.Generic.SortedSet`1" /> object is a subset of the specified collection.</summary>
3067       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
3068       <returns>
3069         <see langword="true" /> if the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object is a subset of <paramref name="other" />; otherwise, <see langword="false" />.</returns>
3070       <exception cref="T:System.ArgumentNullException">
3071         <paramref name="other" /> is <see langword="null" />.</exception>
3072     </member>
3073     <member name="M:System.Collections.Generic.SortedSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
3074       <summary>Determines whether a <see cref="T:System.Collections.Generic.SortedSet`1" /> object is a superset of the specified collection.</summary>
3075       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
3076       <returns>
3077         <see langword="true" /> if the <see cref="T:System.Collections.Generic.SortedSet`1" /> object is a superset of <paramref name="other" />; otherwise, <see langword="false" />.</returns>
3078       <exception cref="T:System.ArgumentNullException">
3079         <paramref name="other" /> is <see langword="null" />.</exception>
3080     </member>
3081     <member name="P:System.Collections.Generic.SortedSet`1.Max">
3082       <summary>Gets the maximum value in the <see cref="T:System.Collections.Generic.SortedSet`1" />, as defined by the comparer.</summary>
3083       <returns>The maximum value in the set.</returns>
3084     </member>
3085     <member name="P:System.Collections.Generic.SortedSet`1.Min">
3086       <summary>Gets the minimum value in the <see cref="T:System.Collections.Generic.SortedSet`1" />, as defined by the comparer.</summary>
3087       <returns>The minimum value in the set.</returns>
3088     </member>
3089     <member name="M:System.Collections.Generic.SortedSet`1.OnDeserialization(System.Object)">
3090       <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface, and raises the deserialization event when the deserialization is completed.</summary>
3091       <param name="sender">The source of the deserialization event.</param>
3092       <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object is invalid.</exception>
3093     </member>
3094     <member name="M:System.Collections.Generic.SortedSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
3095       <summary>Determines whether the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object and a specified collection share common elements.</summary>
3096       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
3097       <returns>
3098         <see langword="true" /> if the <see cref="T:System.Collections.Generic.SortedSet`1" /> object and <paramref name="other" /> share at least one common element; otherwise, <see langword="false" />.</returns>
3099       <exception cref="T:System.ArgumentNullException">
3100         <paramref name="other" /> is <see langword="null" />.</exception>
3101     </member>
3102     <member name="M:System.Collections.Generic.SortedSet`1.Remove(`0)">
3103       <summary>Removes a specified item from the <see cref="T:System.Collections.Generic.SortedSet`1" />.</summary>
3104       <param name="item">The element to remove.</param>
3105       <returns>
3106         <see langword="true" /> if the element is found and successfully removed; otherwise, <see langword="false" />.</returns>
3107     </member>
3108     <member name="M:System.Collections.Generic.SortedSet`1.RemoveWhere(System.Predicate{`0})">
3109       <summary>Removes all elements that match the conditions defined by the specified predicate from a <see cref="T:System.Collections.Generic.SortedSet`1" />.</summary>
3110       <param name="match">The delegate that defines the conditions of the elements to remove.</param>
3111       <returns>The number of elements that were removed from the <see cref="T:System.Collections.Generic.SortedSet`1" /> collection.</returns>
3112       <exception cref="T:System.ArgumentNullException">
3113         <paramref name="match" /> is <see langword="null" />.</exception>
3114     </member>
3115     <member name="M:System.Collections.Generic.SortedSet`1.Reverse">
3116       <summary>Returns an <see cref="T:System.Collections.Generic.IEnumerable`1" /> that iterates over the <see cref="T:System.Collections.Generic.SortedSet`1" /> in reverse order.</summary>
3117       <returns>An enumerator that iterates over the <see cref="T:System.Collections.Generic.SortedSet`1" /> in reverse order.</returns>
3118     </member>
3119     <member name="M:System.Collections.Generic.SortedSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
3120       <summary>Determines whether the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object and the specified collection contain the same elements.</summary>
3121       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
3122       <returns>
3123         <see langword="true" /> if the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object is equal to <paramref name="other" />; otherwise, <see langword="false" />.</returns>
3124       <exception cref="T:System.ArgumentNullException">
3125         <paramref name="other" /> is <see langword="null" />.</exception>
3126     </member>
3127     <member name="M:System.Collections.Generic.SortedSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
3128       <summary>Modifies the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object so that it contains only elements that are present either in the current object or in the specified collection, but not both.</summary>
3129       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
3130       <exception cref="T:System.ArgumentNullException">
3131         <paramref name="other" /> is <see langword="null" />.</exception>
3132     </member>
3133     <member name="M:System.Collections.Generic.SortedSet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
3134       <summary>Adds an item to an <see cref="T:System.Collections.Generic.ICollection`1" /> object.</summary>
3135       <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1" /> object.</param>
3136       <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</exception>
3137     </member>
3138     <member name="P:System.Collections.Generic.SortedSet`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
3139       <summary>Gets a value that indicates whether a <see cref="T:System.Collections.ICollection" /> is read-only.</summary>
3140       <returns>
3141         <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
3142     </member>
3143     <member name="M:System.Collections.Generic.SortedSet`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
3144       <summary>Returns an enumerator that iterates through a collection.</summary>
3145       <returns>An enumerator that can be used to iterate through the collection.</returns>
3146     </member>
3147     <member name="M:System.Collections.Generic.SortedSet`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
3148       <summary>Copies the complete <see cref="T:System.Collections.Generic.SortedSet`1" /> to a compatible one-dimensional array, starting at the specified array index.</summary>
3149       <param name="array">A one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedSet`1" />. The array must have zero-based indexing.</param>
3150       <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
3151       <exception cref="T:System.ArgumentException">The number of elements in the source array is greater than the available space from <paramref name="index" /> to the end of the destination array.</exception>
3152       <exception cref="T:System.ArgumentNullException">
3153         <paramref name="array" /> is <see langword="null" />.</exception>
3154       <exception cref="T:System.ArgumentOutOfRangeException">
3155         <paramref name="index" /> is less than zero.</exception>
3156     </member>
3157     <member name="P:System.Collections.Generic.SortedSet`1.System#Collections#ICollection#IsSynchronized">
3158       <summary>Gets a value that indicates whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
3159       <returns>
3160         <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized; otherwise, <see langword="false" />.</returns>
3161     </member>
3162     <member name="P:System.Collections.Generic.SortedSet`1.System#Collections#ICollection#SyncRoot">
3163       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
3164       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />, this property always returns the current instance.</returns>
3165     </member>
3166     <member name="M:System.Collections.Generic.SortedSet`1.System#Collections#IEnumerable#GetEnumerator">
3167       <summary>Returns an enumerator that iterates through a collection.</summary>
3168       <returns>An enumerator that can be used to iterate through the collection.</returns>
3169     </member>
3170     <member name="M:System.Collections.Generic.SortedSet`1.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)">
3171       <summary>Implements the <see cref="T:System.Runtime.Serialization.IDeserializationCallback" /> interface, and raises the deserialization event when the deserialization is completed.</summary>
3172       <param name="sender">The source of the deserialization event.</param>
3173       <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Generic.SortedSet`1" /> instance is invalid.</exception>
3174     </member>
3175     <member name="M:System.Collections.Generic.SortedSet`1.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
3176       <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface, and returns the data that you need to serialize the <see cref="T:System.Collections.Generic.SortedSet`1" /> instance.</summary>
3177       <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information that is required to serialize the <see cref="T:System.Collections.Generic.SortedSet`1" /> instance.</param>
3178       <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.SortedSet`1" /> instance.</param>
3179       <exception cref="T:System.ArgumentNullException">
3180         <paramref name="info" /> is <see langword="null" />.</exception>
3181     </member>
3182     <member name="M:System.Collections.Generic.SortedSet`1.TryGetValue(`0,`0@)">
3183       <summary>Searches the set for a given value and returns the equal value it finds, if any.</summary>
3184       <param name="equalValue">The value to search for.</param>
3185       <param name="actualValue">The value from the set that the search found, or the default value of T when the search yielded no match.</param>
3186       <returns>A value indicating whether the search was successful.</returns>
3187     </member>
3188     <member name="M:System.Collections.Generic.SortedSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0})">
3189       <summary>Modifies the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object so that it contains all elements that are present in either the current object or the specified collection.</summary>
3190       <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1" /> object.</param>
3191       <exception cref="T:System.ArgumentNullException">
3192         <paramref name="other" /> is <see langword="null" />.</exception>
3193     </member>
3194     <member name="T:System.Collections.Generic.Stack`1">
3195       <summary>Represents a variable size last-in-first-out (LIFO) collection of instances of the same specified type.</summary>
3196       <typeparam name="T">Specifies the type of elements in the stack.</typeparam>
3197     </member>
3198     <member name="M:System.Collections.Generic.Stack`1.#ctor">
3199       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Stack`1" /> class that is empty and has the default initial capacity.</summary>
3200     </member>
3201     <member name="M:System.Collections.Generic.Stack`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
3202       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Stack`1" /> class that contains elements copied from the specified collection and has sufficient capacity to accommodate the number of elements copied.</summary>
3203       <param name="collection">The collection to copy elements from.</param>
3204       <exception cref="T:System.ArgumentNullException">
3205         <paramref name="collection" /> is <see langword="null" />.</exception>
3206     </member>
3207     <member name="M:System.Collections.Generic.Stack`1.#ctor(System.Int32)">
3208       <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Stack`1" /> class that is empty and has the specified initial capacity or the default initial capacity, whichever is greater.</summary>
3209       <param name="capacity">The initial number of elements that the <see cref="T:System.Collections.Generic.Stack`1" /> can contain.</param>
3210       <exception cref="T:System.ArgumentOutOfRangeException">
3211         <paramref name="capacity" /> is less than zero.</exception>
3212     </member>
3213     <member name="M:System.Collections.Generic.Stack`1.Clear">
3214       <summary>Removes all objects from the <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
3215     </member>
3216     <member name="M:System.Collections.Generic.Stack`1.Contains(`0)">
3217       <summary>Determines whether an element is in the <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
3218       <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.Stack`1" />. The value can be <see langword="null" /> for reference types.</param>
3219       <returns>
3220         <see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.Stack`1" />; otherwise, <see langword="false" />.</returns>
3221     </member>
3222     <member name="M:System.Collections.Generic.Stack`1.CopyTo(`0[],System.Int32)">
3223       <summary>Copies the <see cref="T:System.Collections.Generic.Stack`1" /> to an existing one-dimensional <see cref="T:System.Array" />, starting at the specified array index.</summary>
3224       <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.Stack`1" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
3225       <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
3226       <exception cref="T:System.ArgumentNullException">
3227         <paramref name="array" /> is <see langword="null" />.</exception>
3228       <exception cref="T:System.ArgumentOutOfRangeException">
3229         <paramref name="arrayIndex" /> is less than zero.</exception>
3230       <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>
3231     </member>
3232     <member name="P:System.Collections.Generic.Stack`1.Count">
3233       <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
3234       <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.Stack`1" />.</returns>
3235     </member>
3236     <member name="T:System.Collections.Generic.Stack`1.Enumerator">
3237       <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
3238       <typeparam name="T" />
3239     </member>
3240     <member name="P:System.Collections.Generic.Stack`1.Enumerator.Current">
3241       <summary>Gets the element at the current position of the enumerator.</summary>
3242       <returns>The element in the <see cref="T:System.Collections.Generic.Stack`1" /> at the current position of the enumerator.</returns>
3243       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
3244     </member>
3245     <member name="M:System.Collections.Generic.Stack`1.Enumerator.Dispose">
3246       <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.Stack`1.Enumerator" />.</summary>
3247     </member>
3248     <member name="M:System.Collections.Generic.Stack`1.Enumerator.MoveNext">
3249       <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
3250       <returns>
3251         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
3252       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
3253     </member>
3254     <member name="P:System.Collections.Generic.Stack`1.Enumerator.System#Collections#IEnumerator#Current">
3255       <summary>Gets the element at the current position of the enumerator.</summary>
3256       <returns>The element in the collection at the current position of the enumerator.</returns>
3257       <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
3258     </member>
3259     <member name="M:System.Collections.Generic.Stack`1.Enumerator.System#Collections#IEnumerator#Reset">
3260       <summary>Sets the enumerator to its initial position, which is before the first element in the collection. This class cannot be inherited.</summary>
3261       <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
3262     </member>
3263     <member name="M:System.Collections.Generic.Stack`1.GetEnumerator">
3264       <summary>Returns an enumerator for the <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
3265       <returns>An <see cref="T:System.Collections.Generic.Stack`1.Enumerator" /> for the <see cref="T:System.Collections.Generic.Stack`1" />.</returns>
3266     </member>
3267     <member name="M:System.Collections.Generic.Stack`1.Peek">
3268       <summary>Returns the object at the top of the <see cref="T:System.Collections.Generic.Stack`1" /> without removing it.</summary>
3269       <returns>The object at the top of the <see cref="T:System.Collections.Generic.Stack`1" />.</returns>
3270       <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Stack`1" /> is empty.</exception>
3271     </member>
3272     <member name="M:System.Collections.Generic.Stack`1.Pop">
3273       <summary>Removes and returns the object at the top of the <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
3274       <returns>The object removed from the top of the <see cref="T:System.Collections.Generic.Stack`1" />.</returns>
3275       <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Stack`1" /> is empty.</exception>
3276     </member>
3277     <member name="M:System.Collections.Generic.Stack`1.Push(`0)">
3278       <summary>Inserts an object at the top of the <see cref="T:System.Collections.Generic.Stack`1" />.</summary>
3279       <param name="item">The object to push onto the <see cref="T:System.Collections.Generic.Stack`1" />. The value can be <see langword="null" /> for reference types.</param>
3280     </member>
3281     <member name="M:System.Collections.Generic.Stack`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
3282       <summary>Returns an enumerator that iterates through the collection.</summary>
3283       <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.</returns>
3284     </member>
3285     <member name="M:System.Collections.Generic.Stack`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
3286       <summary>Copies the elements of the <see cref="T:System.Collections.ICollection" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
3287       <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" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
3288       <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
3289       <exception cref="T:System.ArgumentNullException">
3290         <paramref name="array" /> is <see langword="null" />.</exception>
3291       <exception cref="T:System.ArgumentOutOfRangeException">
3292         <paramref name="arrayIndex" /> is less than zero.</exception>
3293       <exception cref="T:System.ArgumentException">
3294         <paramref name="array" /> is multidimensional.
3295 -or-
3296 <paramref name="array" /> does not have zero-based indexing.
3297 -or-
3298 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" />.
3299 -or-
3300 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>
3301     </member>
3302     <member name="P:System.Collections.Generic.Stack`1.System#Collections#ICollection#IsSynchronized">
3303       <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe).</summary>
3304       <returns>
3305         <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.  In the default implementation of <see cref="T:System.Collections.Generic.Stack`1" />, this property always returns <see langword="false" />.</returns>
3306     </member>
3307     <member name="P:System.Collections.Generic.Stack`1.System#Collections#ICollection#SyncRoot">
3308       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</summary>
3309       <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.  In the default implementation of <see cref="T:System.Collections.Generic.Stack`1" />, this property always returns the current instance.</returns>
3310     </member>
3311     <member name="M:System.Collections.Generic.Stack`1.System#Collections#IEnumerable#GetEnumerator">
3312       <summary>Returns an enumerator that iterates through a collection.</summary>
3313       <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
3314     </member>
3315     <member name="M:System.Collections.Generic.Stack`1.ToArray">
3316       <summary>Copies the <see cref="T:System.Collections.Generic.Stack`1" /> to a new array.</summary>
3317       <returns>A new array containing copies of the elements of the <see cref="T:System.Collections.Generic.Stack`1" />.</returns>
3318     </member>
3319     <member name="M:System.Collections.Generic.Stack`1.TrimExcess">
3320       <summary>Sets the capacity to the actual number of elements in the <see cref="T:System.Collections.Generic.Stack`1" />, if that number is less than 90 percent of current capacity.</summary>
3321     </member>
3322     <member name="M:System.Collections.Generic.Stack`1.TryPeek(`0@)">
3323       <param name="result" />
3324     </member>
3325     <member name="M:System.Collections.Generic.Stack`1.TryPop(`0@)">
3326       <param name="result" />
3327     </member>
3328     <member name="T:System.Collections.StructuralComparisons">
3329       <summary>Provides objects for performing a structural comparison of two collection objects.</summary>
3330     </member>
3331     <member name="P:System.Collections.StructuralComparisons.StructuralComparer">
3332       <summary>Gets a predefined object that performs a structural comparison of two objects.</summary>
3333       <returns>A predefined object that is used to perform a structural comparison of two collection objects.</returns>
3334     </member>
3335     <member name="P:System.Collections.StructuralComparisons.StructuralEqualityComparer">
3336       <summary>Gets a predefined object that compares two objects for structural equality.</summary>
3337       <returns>A predefined object that is used to compare two collection objects for structural equality.</returns>
3338     </member>
3339   </members>
3340 </doc>