You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

2901 lines
274 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <doc>
  3. <assembly>
  4. <name>System.Collections</name>
  5. </assembly>
  6. <members>
  7. <member name="T:System.Collections.BitArray">
  8. <summary>管理位值的压缩数组,该值表示为布尔值,其中 true 表示位是打开的 (1),false 表示位是关闭的 (0)。</summary>
  9. <filterpriority>2</filterpriority>
  10. </member>
  11. <member name="M:System.Collections.BitArray.#ctor(System.Boolean[])">
  12. <summary>初始化 <see cref="T:System.Collections.BitArray" /> 类的新实例,该实例包含从布尔值指定数组复制的位值。</summary>
  13. <param name="values">要复制的布尔值数组。</param>
  14. <exception cref="T:System.ArgumentNullException">
  15. <paramref name="values" /> is null. </exception>
  16. </member>
  17. <member name="M:System.Collections.BitArray.#ctor(System.Byte[])">
  18. <summary>初始化 <see cref="T:System.Collections.BitArray" /> 类的新实例,该实例包含从指定的字节数组复制的位值。</summary>
  19. <param name="bytes">字节数组包含要复制的值,在这里每个字节代表八个连续位。</param>
  20. <exception cref="T:System.ArgumentNullException">
  21. <paramref name="bytes" /> is null. </exception>
  22. <exception cref="T:System.ArgumentException">The length of <paramref name="bytes" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
  23. </member>
  24. <member name="M:System.Collections.BitArray.#ctor(System.Collections.BitArray)">
  25. <summary>初始化 <see cref="T:System.Collections.BitArray" /> 类的新实例,该实例包含从指定 <see cref="T:System.Collections.BitArray" /> 复制的位值。</summary>
  26. <param name="bits">要复制的 <see cref="T:System.Collections.BitArray" />。</param>
  27. <exception cref="T:System.ArgumentNullException">
  28. <paramref name="bits" /> is null. </exception>
  29. </member>
  30. <member name="M:System.Collections.BitArray.#ctor(System.Int32)">
  31. <summary>初始化 <see cref="T:System.Collections.BitArray" /> 类的新实例,该实例可拥有指定数目的位值,位值最初设置为 false。</summary>
  32. <param name="length">新 <see cref="T:System.Collections.BitArray" /> 中位值的数目。</param>
  33. <exception cref="T:System.ArgumentOutOfRangeException">
  34. <paramref name="length" /> is less than zero. </exception>
  35. </member>
  36. <member name="M:System.Collections.BitArray.#ctor(System.Int32,System.Boolean)">
  37. <summary>初始化 <see cref="T:System.Collections.BitArray" /> 类的新实例,该实例可拥有指定数目的位值,位值最初设置为指定值。</summary>
  38. <param name="length">新 <see cref="T:System.Collections.BitArray" /> 中位值的数目。</param>
  39. <param name="defaultValue">要分配给每个比特位的布尔值。</param>
  40. <exception cref="T:System.ArgumentOutOfRangeException">
  41. <paramref name="length" /> is less than zero. </exception>
  42. </member>
  43. <member name="M:System.Collections.BitArray.#ctor(System.Int32[])">
  44. <summary>初始化 <see cref="T:System.Collections.BitArray" /> 类的新实例,该实例包含从指定的 32 位整数数组复制的位值。</summary>
  45. <param name="values">整数数组包含要复制的值,在这里每个整数代表 32 个连续位。</param>
  46. <exception cref="T:System.ArgumentNullException">
  47. <paramref name="values" /> is null. </exception>
  48. <exception cref="T:System.ArgumentException">The length of <paramref name="values" /> is greater than <see cref="F:System.Int32.MaxValue" /></exception>
  49. </member>
  50. <member name="M:System.Collections.BitArray.And(System.Collections.BitArray)">
  51. <summary>针对指定的 <see cref="T:System.Collections.BitArray" /> 中的相应元素对当前 <see cref="T:System.Collections.BitArray" /> 中的元素执行按位“与”运算。</summary>
  52. <returns>当前实例包含针对指定的 <see cref="T:System.Collections.BitArray" /> 中的相应元素对当前 <see cref="T:System.Collections.BitArray" /> 中的元素执行按位“与”运算的结果。</returns>
  53. <param name="value">用其执行按位“与”运算的 <see cref="T:System.Collections.BitArray" />。</param>
  54. <exception cref="T:System.ArgumentNullException">
  55. <paramref name="value" /> is null. </exception>
  56. <exception cref="T:System.ArgumentException">
  57. <paramref name="value" /> and the current <see cref="T:System.Collections.BitArray" /> do not have the same number of elements. </exception>
  58. <filterpriority>2</filterpriority>
  59. </member>
  60. <member name="M:System.Collections.BitArray.Get(System.Int32)">
  61. <summary>获取 <see cref="T:System.Collections.BitArray" /> 中特定位置处的位值。</summary>
  62. <returns>在 <paramref name="index" /> 位置处的位的值。</returns>
  63. <param name="index">要获取的值的从零开始索引。</param>
  64. <exception cref="T:System.ArgumentOutOfRangeException">
  65. <paramref name="index" /> is less than zero.-or- <paramref name="index" /> is greater than or equal to the number of elements in the <see cref="T:System.Collections.BitArray" />. </exception>
  66. <filterpriority>2</filterpriority>
  67. </member>
  68. <member name="M:System.Collections.BitArray.GetEnumerator">
  69. <summary>返回循环访问 <see cref="T:System.Collections.BitArray" /> 的枚举数。</summary>
  70. <returns>一个用于整个 <see cref="T:System.Collections.BitArray" /> 的 <see cref="T:System.Collections.IEnumerator" />。</returns>
  71. <filterpriority>2</filterpriority>
  72. </member>
  73. <member name="P:System.Collections.BitArray.Item(System.Int32)">
  74. <summary>获取或设置 <see cref="T:System.Collections.BitArray" /> 中特定位置处的位值。</summary>
  75. <returns>在 <paramref name="index" /> 位置处的位的值。</returns>
  76. <param name="index">要获取或设置的值的从零开始索引。</param>
  77. <exception cref="T:System.ArgumentOutOfRangeException">
  78. <paramref name="index" /> is less than zero.-or- <paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.BitArray.Count" />. </exception>
  79. <filterpriority>2</filterpriority>
  80. </member>
  81. <member name="P:System.Collections.BitArray.Length">
  82. <summary>获取或设置 <see cref="T:System.Collections.BitArray" /> 中的元素数。</summary>
  83. <returns>
  84. <see cref="T:System.Collections.BitArray" /> 中元素的数目。</returns>
  85. <exception cref="T:System.ArgumentOutOfRangeException">The property is set to a value that is less than zero. </exception>
  86. <filterpriority>2</filterpriority>
  87. </member>
  88. <member name="M:System.Collections.BitArray.Not">
  89. <summary>反转当前 <see cref="T:System.Collections.BitArray" /> 中的所有位值,以便将设置为 true 的元素更改为 false;将设置为 false 的元素更改为 true。</summary>
  90. <returns>具有已反转的位值的当前实例。</returns>
  91. <filterpriority>2</filterpriority>
  92. </member>
  93. <member name="M:System.Collections.BitArray.Or(System.Collections.BitArray)">
  94. <summary>针对指定的 <see cref="T:System.Collections.BitArray" /> 中的相应元素对当前 <see cref="T:System.Collections.BitArray" /> 中的元素执行按位“或”运算。</summary>
  95. <returns>当前实例包含针对指定的 <see cref="T:System.Collections.BitArray" /> 中的相应元素对当前 <see cref="T:System.Collections.BitArray" /> 中的元素执行按位“或”运算的结果。</returns>
  96. <param name="value">用其执行按位“或”运算的 <see cref="T:System.Collections.BitArray" />。</param>
  97. <exception cref="T:System.ArgumentNullException">
  98. <paramref name="value" /> is null. </exception>
  99. <exception cref="T:System.ArgumentException">
  100. <paramref name="value" /> and the current <see cref="T:System.Collections.BitArray" /> do not have the same number of elements. </exception>
  101. <filterpriority>2</filterpriority>
  102. </member>
  103. <member name="M:System.Collections.BitArray.Set(System.Int32,System.Boolean)">
  104. <summary>将 <see cref="T:System.Collections.BitArray" /> 中特定位置处的位设置为指定值。</summary>
  105. <param name="index">要设置的位的从零开始索引。</param>
  106. <param name="value">要分配给比特位的布尔值。</param>
  107. <exception cref="T:System.ArgumentOutOfRangeException">
  108. <paramref name="index" /> is less than zero.-or- <paramref name="index" /> is greater than or equal to the number of elements in the <see cref="T:System.Collections.BitArray" />. </exception>
  109. <filterpriority>2</filterpriority>
  110. </member>
  111. <member name="M:System.Collections.BitArray.SetAll(System.Boolean)">
  112. <summary>将 <see cref="T:System.Collections.BitArray" /> 中所有位设置为指定值。</summary>
  113. <param name="value">要分配给所有位的布尔值。</param>
  114. <filterpriority>2</filterpriority>
  115. </member>
  116. <member name="M:System.Collections.BitArray.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  117. <summary>从特定的 <see cref="T:System.Array" /> 索引处开始,将 <see cref="T:System.Collections.BitArray" /> 的元素复制到一个 <see cref="T:System.Array" /> 中。</summary>
  118. <param name="array">一维 <see cref="T:System.Array" />,它是从 <see cref="T:System.Collections.BitArray" /> 复制的元素的目标。<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  119. <param name="index">
  120. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  121. <exception cref="T:System.ArgumentNullException">
  122. <paramref name="array" /> is null. </exception>
  123. <exception cref="T:System.ArgumentOutOfRangeException">
  124. <paramref name="index" /> is less than zero. </exception>
  125. <exception cref="T:System.ArgumentException">
  126. <paramref name="array" /> is multidimensional.-or- The number of elements in the source <see cref="T:System.Collections.BitArray" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.-or-The type of the source <see cref="T:System.Collections.BitArray" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
  127. </member>
  128. <member name="P:System.Collections.BitArray.System#Collections#ICollection#Count">
  129. <summary>获取 <see cref="T:System.Collections.BitArray" /> 中的元素数。</summary>
  130. <returns>
  131. <see cref="T:System.Collections.BitArray" /> 中元素的数目。</returns>
  132. </member>
  133. <member name="P:System.Collections.BitArray.System#Collections#ICollection#IsSynchronized">
  134. <summary>获取一个值,该值指示是否同步对 <see cref="T:System.Collections.BitArray" /> 的访问(线程安全)。</summary>
  135. <returns>如果对 <see cref="T:System.Collections.BitArray" /> 的访问是同步的(线程安全),则为 true;否则为 false。</returns>
  136. </member>
  137. <member name="P:System.Collections.BitArray.System#Collections#ICollection#SyncRoot">
  138. <summary>获取可用于同步对 <see cref="T:System.Collections.BitArray" /> 的访问的对象。</summary>
  139. <returns>可用于同步对 <see cref="T:System.Collections.BitArray" /> 的访问的对象。</returns>
  140. </member>
  141. <member name="M:System.Collections.BitArray.Xor(System.Collections.BitArray)">
  142. <summary>针对指定的 <see cref="T:System.Collections.BitArray" /> 中的相应元素对当前 <see cref="T:System.Collections.BitArray" /> 中的元素执行按位“异或”运算。</summary>
  143. <returns>当前实例包含针对指定的 <see cref="T:System.Collections.BitArray" /> 中的相应元素对当前 <see cref="T:System.Collections.BitArray" /> 中的元素执行按位“异或”运算的结果。</returns>
  144. <param name="value">用其执行按位“异或”运算的 <see cref="T:System.Collections.BitArray" />。</param>
  145. <exception cref="T:System.ArgumentNullException">
  146. <paramref name="value" /> is null. </exception>
  147. <exception cref="T:System.ArgumentException">
  148. <paramref name="value" /> and the current <see cref="T:System.Collections.BitArray" /> do not have the same number of elements. </exception>
  149. <filterpriority>2</filterpriority>
  150. </member>
  151. <member name="T:System.Collections.StructuralComparisons">
  152. <summary>提供用于对两个集合对象执行结构比较的对象。</summary>
  153. </member>
  154. <member name="P:System.Collections.StructuralComparisons.StructuralComparer">
  155. <summary>获取可执行两个对象的结构比较的预定义对象。</summary>
  156. <returns>一个用于执行两个集合对象的结构比较的预定义对象。</returns>
  157. </member>
  158. <member name="P:System.Collections.StructuralComparisons.StructuralEqualityComparer">
  159. <summary>获取一个可比较两个对象的结构是否相等的预定义对象。</summary>
  160. <returns>一个用于比较两个集合对象的结构是否相等的预定义对象。</returns>
  161. </member>
  162. <member name="T:System.Collections.Generic.Comparer`1">
  163. <summary>为 <see cref="T:System.Collections.Generic.IComparer`1" /> 泛型接口的实现提供基类。</summary>
  164. <typeparam name="T">要比较的对象的类型。</typeparam>
  165. <filterpriority>1</filterpriority>
  166. </member>
  167. <member name="M:System.Collections.Generic.Comparer`1.#ctor">
  168. <summary>初始化 <see cref="T:System.Collections.Generic.Comparer`1" /> 类的新实例。</summary>
  169. </member>
  170. <member name="M:System.Collections.Generic.Comparer`1.Compare(`0,`0)">
  171. <summary>在派生类中重写时,对同一类型的两个对象执行比较并返回一个值,指示一个对象是小于、等于还是大于另一个对象。</summary>
  172. <returns>一个有符号整数,指示 <paramref name="x" /> 与 <paramref name="y" /> 的相对值,如下表所示。值含义小于零<paramref name="x" /> 小于 <paramref name="y" />。零<paramref name="x" /> 等于 <paramref name="y" />。大于零<paramref name="x" /> 大于 <paramref name="y" />。</returns>
  173. <param name="x">要比较的第一个对象。</param>
  174. <param name="y">要比较的第二个对象。</param>
  175. <exception cref="T:System.ArgumentException">类型 <paramref name="T" /> 没有实现 <see cref="T:System.IComparable`1" /> 泛型接口或 <see cref="T:System.IComparable" /> 接口。</exception>
  176. </member>
  177. <member name="M:System.Collections.Generic.Comparer`1.Create(System.Comparison{`0})">
  178. <summary>用指定的比较创建一个比较器。 </summary>
  179. <returns>新的比较器。</returns>
  180. <param name="comparison">要使用的比较。</param>
  181. </member>
  182. <member name="P:System.Collections.Generic.Comparer`1.Default">
  183. <summary>返回由泛型参数指定的类型的默认排序顺序比较器。</summary>
  184. <returns>继承 <see cref="T:System.Collections.Generic.Comparer`1" /> 并作为 <paramref name="T" /> 类型的排序顺序比较器的对象。</returns>
  185. </member>
  186. <member name="M:System.Collections.Generic.Comparer`1.System#Collections#IComparer#Compare(System.Object,System.Object)">
  187. <summary>比较两个对象并返回一个值,该值指示一个对象小于、等于还是大于另一个对象。</summary>
  188. <returns>一个有符号整数,指示 <paramref name="x" /> 与 <paramref name="y" /> 的相对值,如下表所示。值含义小于零<paramref name="x" /> 小于 <paramref name="y" />。零<paramref name="x" /> 等于 <paramref name="y" />。大于零<paramref name="x" /> 大于 <paramref name="y" />。</returns>
  189. <param name="x">要比较的第一个对象。</param>
  190. <param name="y">要比较的第二个对象。</param>
  191. <exception cref="T:System.ArgumentException">
  192. <paramref name="x" /> 或 <paramref name="y" /> 所属的类型无法被强制转换为类型 <paramref name="T" />。- 或 -<paramref name="x" /> 和 <paramref name="y" /> 不实现 <see cref="T:System.IComparable`1" /> 泛型接口或 <see cref="T:System.IComparable" /> 接口。</exception>
  193. </member>
  194. <member name="T:System.Collections.Generic.Dictionary`2">
  195. <summary>表示键和值的集合。若要浏览此类型的.NET Framework 源代码,请参阅 Reference Source。</summary>
  196. <typeparam name="TKey">字典中的键的类型。</typeparam>
  197. <typeparam name="TValue">字典中的值的类型。</typeparam>
  198. <filterpriority>1</filterpriority>
  199. </member>
  200. <member name="M:System.Collections.Generic.Dictionary`2.#ctor">
  201. <summary>初始化 <see cref="T:System.Collections.Generic.Dictionary`2" /> 类的新实例,该实例为空,具有默认的初始容量并为键类型使用默认的相等比较器。</summary>
  202. </member>
  203. <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})">
  204. <summary>初始化 <see cref="T:System.Collections.Generic.Dictionary`2" /> 类的新实例,该实例包含从指定的 <see cref="T:System.Collections.Generic.IDictionary`2" /> 复制的元素并为键类型使用默认的相等比较器。</summary>
  205. <param name="dictionary">
  206. <see cref="T:System.Collections.Generic.IDictionary`2" />,它的元素被复制到新 <see cref="T:System.Collections.Generic.Dictionary`2" />。</param>
  207. <exception cref="T:System.ArgumentNullException">
  208. <paramref name="dictionary" /> 为 null。</exception>
  209. <exception cref="T:System.ArgumentException">
  210. <paramref name="dictionary" /> 包含一个或多个重复键。</exception>
  211. </member>
  212. <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IEqualityComparer{`0})">
  213. <summary>初始化 <see cref="T:System.Collections.Generic.Dictionary`2" /> 类的新实例,该实例包含从指定的 <see cref="T:System.Collections.Generic.IDictionary`2" /> 中复制的元素并使用指定的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</summary>
  214. <param name="dictionary">
  215. <see cref="T:System.Collections.Generic.IDictionary`2" />,它的元素被复制到新 <see cref="T:System.Collections.Generic.Dictionary`2" />。</param>
  216. <param name="comparer">比较键时要使用的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 实现,或者为 null,以便为键类型使用默认的 <see cref="T:System.Collections.Generic.EqualityComparer`1" />。</param>
  217. <exception cref="T:System.ArgumentNullException">
  218. <paramref name="dictionary" /> 为 null。</exception>
  219. <exception cref="T:System.ArgumentException">
  220. <paramref name="dictionary" /> 包含一个或多个重复键。</exception>
  221. </member>
  222. <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IEqualityComparer{`0})">
  223. <summary>初始化 <see cref="T:System.Collections.Generic.Dictionary`2" /> 类的新实例,该实例为空,具有默认的初始容量并使用指定的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</summary>
  224. <param name="comparer">比较键时要使用的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 实现,或者为 null,以便为键类型使用默认的 <see cref="T:System.Collections.Generic.EqualityComparer`1" />。</param>
  225. </member>
  226. <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Int32)">
  227. <summary>初始化 <see cref="T:System.Collections.Generic.Dictionary`2" /> 类的新实例,该实例为空,具有指定的初始容量并为键类型使用默认的相等比较器。</summary>
  228. <param name="capacity">
  229. <see cref="T:System.Collections.Generic.Dictionary`2" /> 可包含的初始元素数。</param>
  230. <exception cref="T:System.ArgumentOutOfRangeException">
  231. <paramref name="capacity" /> 小于 0。</exception>
  232. </member>
  233. <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
  234. <summary>初始化 <see cref="T:System.Collections.Generic.Dictionary`2" /> 类的新实例,该实例为空,具有指定的初始容量并使用指定的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</summary>
  235. <param name="capacity">
  236. <see cref="T:System.Collections.Generic.Dictionary`2" /> 可包含的初始元素数。</param>
  237. <param name="comparer">比较键时要使用的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 实现,或者为 null,以便为键类型使用默认的 <see cref="T:System.Collections.Generic.EqualityComparer`1" />。</param>
  238. <exception cref="T:System.ArgumentOutOfRangeException">
  239. <paramref name="capacity" /> 小于 0。</exception>
  240. </member>
  241. <member name="M:System.Collections.Generic.Dictionary`2.Add(`0,`1)">
  242. <summary>将指定的键和值添加到字典中。</summary>
  243. <param name="key">要添加的元素的键。</param>
  244. <param name="value">要添加的元素的值。对于引用类型,该值可以为 null。</param>
  245. <exception cref="T:System.ArgumentNullException">
  246. <paramref name="key" /> 为 null。</exception>
  247. <exception cref="T:System.ArgumentException">
  248. <see cref="T:System.Collections.Generic.Dictionary`2" /> 中已存在具有相同键的元素。</exception>
  249. </member>
  250. <member name="M:System.Collections.Generic.Dictionary`2.Clear">
  251. <summary>将所有键和值从 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中移除。</summary>
  252. </member>
  253. <member name="P:System.Collections.Generic.Dictionary`2.Comparer">
  254. <summary>获取用于确定字典中的键是否相等的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" />。</summary>
  255. <returns>
  256. <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 泛型接口实现,它用于确定当前 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中的键是否相等并为键提供哈希值。</returns>
  257. </member>
  258. <member name="M:System.Collections.Generic.Dictionary`2.ContainsKey(`0)">
  259. <summary>确定是否 <see cref="T:System.Collections.Generic.Dictionary`2" /> 包含指定键。</summary>
  260. <returns>如果 true 包含具有指定键的元素,则为 <see cref="T:System.Collections.Generic.Dictionary`2" />;否则为 false。</returns>
  261. <param name="key">要在 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中定位的键。</param>
  262. <exception cref="T:System.ArgumentNullException">
  263. <paramref name="key" /> 为 null。</exception>
  264. </member>
  265. <member name="M:System.Collections.Generic.Dictionary`2.ContainsValue(`1)">
  266. <summary>确定 <see cref="T:System.Collections.Generic.Dictionary`2" /> 是否包含特定值。</summary>
  267. <returns>如果 true 包含具有指定值的元素,则为 <see cref="T:System.Collections.Generic.Dictionary`2" />;否则为 false。</returns>
  268. <param name="value">要在 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中定位的值。对于引用类型,该值可以为 null。</param>
  269. </member>
  270. <member name="P:System.Collections.Generic.Dictionary`2.Count">
  271. <summary>获取包含在 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中的键/值对的数目。</summary>
  272. <returns>包含在 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中的键/值对的数目。</returns>
  273. </member>
  274. <member name="M:System.Collections.Generic.Dictionary`2.GetEnumerator">
  275. <summary>返回循环访问 <see cref="T:System.Collections.Generic.Dictionary`2" /> 的枚举数。</summary>
  276. <returns>用于 <see cref="T:System.Collections.Generic.Dictionary`2" /> 的 <see cref="T:System.Collections.Generic.Dictionary`2.Enumerator" /> 结构。</returns>
  277. </member>
  278. <member name="P:System.Collections.Generic.Dictionary`2.Item(`0)">
  279. <summary>获取或设置与指定的键关联的值。</summary>
  280. <returns>与指定的键相关联的值。如果指定键未找到,则 Get 操作引发 <see cref="T:System.Collections.Generic.KeyNotFoundException" />,而 Set 操作创建一个带指定键的新元素。</returns>
  281. <param name="key">要获取或设置的值的键。</param>
  282. <exception cref="T:System.ArgumentNullException">
  283. <paramref name="key" /> 为 null。</exception>
  284. <exception cref="T:System.Collections.Generic.KeyNotFoundException">已检索该属性,并且集合中不存在 <paramref name="key" />。</exception>
  285. </member>
  286. <member name="P:System.Collections.Generic.Dictionary`2.Keys">
  287. <summary>获得一个包含 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中的键的集合。</summary>
  288. <returns>一个 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" />,包含 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中的键。</returns>
  289. </member>
  290. <member name="M:System.Collections.Generic.Dictionary`2.Remove(`0)">
  291. <summary>将带有指定键的值从 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中移除。</summary>
  292. <returns>如果成功找到并移除该元素,则为 true;否则为 false。如果在 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中没有找到 <paramref name="key" />,则此方法返回 false。</returns>
  293. <param name="key">要移除的元素的键。</param>
  294. <exception cref="T:System.ArgumentNullException">
  295. <paramref name="key" /> 为 null。</exception>
  296. </member>
  297. <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
  298. <summary>添加指定值到带有指定键的 <see cref="T:System.Collections.Generic.ICollection`1" />。</summary>
  299. <param name="keyValuePair">表示要添加到 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中的键和值的 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 结构。</param>
  300. <exception cref="T:System.ArgumentNullException">
  301. <paramref name="keyValuePair" /> 的键为 null。</exception>
  302. <exception cref="T:System.ArgumentException">
  303. <see cref="T:System.Collections.Generic.Dictionary`2" /> 中已存在具有相同键的元素。</exception>
  304. </member>
  305. <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
  306. <summary>确定是否 <see cref="T:System.Collections.Generic.ICollection`1" /> 包含一个指定键和值。</summary>
  307. <returns>如果在 true 中找到 <paramref name="keyValuePair" />,则为 <see cref="T:System.Collections.Generic.ICollection`1" />;否则为 false。</returns>
  308. <param name="keyValuePair">要在 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 中定位的 <see cref="T:System.Collections.Generic.ICollection`1" /> 结构。</param>
  309. </member>
  310. <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
  311. <summary>从特定的数组索引处开始,将 <see cref="T:System.Collections.Generic.ICollection`1" /> 的元素复制到类型 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 的一个数组。</summary>
  312. <param name="array">类型 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 的一维数组,它是从 <see cref="T:System.Collections.Generic.ICollection`1" /> 复制的 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 元素的目标。该数组的索引必须从零开始。</param>
  313. <param name="index">
  314. <paramref name="array" /> 中从零开始的索引,从此处开始复制。</param>
  315. <exception cref="T:System.ArgumentNullException">
  316. <paramref name="array" /> 为 null。</exception>
  317. <exception cref="T:System.ArgumentOutOfRangeException">
  318. <paramref name="index" /> 小于 0。</exception>
  319. <exception cref="T:System.ArgumentException">源 <see cref="T:System.Collections.Generic.ICollection`1" /> 中的元素数目大于从 <paramref name="index" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。</exception>
  320. </member>
  321. <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#IsReadOnly">
  322. <summary>获取一个值,该值指示字典是否为只读。</summary>
  323. <returns>如果 true 是只读的,则为 <see cref="T:System.Collections.Generic.ICollection`1" />;否则为 false。在 <see cref="T:System.Collections.Generic.Dictionary`2" /> 的默认实现中,此属性始终返回 false。</returns>
  324. </member>
  325. <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{T}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
  326. <summary>从字典中移除键和值。</summary>
  327. <returns>如果成功找到并移除 <paramref name="keyValuePair" /> 所表示的键和值,则为 true;否则为 false。如果在 <see cref="T:System.Collections.Generic.ICollection`1" /> 中没有找到 <paramref name="keyValuePair" />,则此方法返回 false。</returns>
  328. <param name="keyValuePair">表示要从 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中移除的键和值的 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 结构。</param>
  329. </member>
  330. <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
  331. <summary>获取包含 <see cref="T:System.Collections.Generic.ICollection`1" /> 的键的 <see cref="T:System.Collections.Generic.IDictionary`2" />。</summary>
  332. <returns>包含 <see cref="T:System.Collections.Generic.IDictionary`2" /> 的键的类型 <paramref name="TKey" /> 的 <see cref="T:System.Collections.Generic.ICollection`1" />。</returns>
  333. </member>
  334. <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
  335. <summary>获取一个 <see cref="T:System.Collections.Generic.ICollection`1" />,它包含 <see cref="T:System.Collections.Generic.IDictionary`2" /> 中的值。</summary>
  336. <returns>包含 <see cref="T:System.Collections.Generic.IDictionary`2" /> 中的值的类型 <paramref name="TValue" /> 的 <see cref="T:System.Collections.Generic.ICollection`1" />。</returns>
  337. </member>
  338. <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  339. <summary>返回一个循环访问集合的枚举器。</summary>
  340. <returns>可用于循环访问集合的 <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
  341. </member>
  342. <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Keys">
  343. <summary>获得一个包含 <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" /> 的键的集合。</summary>
  344. <returns>一个包含 <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" /> 的键的集合。</returns>
  345. </member>
  346. <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Values">
  347. <summary>获得一个包含 <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" /> 的值的集合。</summary>
  348. <returns>一个包含 <see cref="T:System.Collections.Generic.IReadOnlyDictionary`2" /> 的值的集合。</returns>
  349. </member>
  350. <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  351. <summary>从特定的数组索引处开始,将 <see cref="T:System.Collections.Generic.ICollection`1" /> 的元素复制到一个数组中。</summary>
  352. <param name="array">一维数组,用作从 <see cref="T:System.Collections.Generic.ICollection`1" /> 复制的元素的目标位置。该数组的索引必须从零开始。</param>
  353. <param name="index">
  354. <paramref name="array" /> 中从零开始的索引,从此处开始复制。</param>
  355. <exception cref="T:System.ArgumentNullException">
  356. <paramref name="array" /> 为 null。</exception>
  357. <exception cref="T:System.ArgumentOutOfRangeException">
  358. <paramref name="index" /> 小于 0。</exception>
  359. <exception cref="T:System.ArgumentException">
  360. <paramref name="array" /> 是多维的。- 或 -<paramref name="array" /> 没有从零开始的索引。- 或 -源 <see cref="T:System.Collections.Generic.ICollection`1" /> 中的元素数目大于从 <paramref name="index" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。- 或 -源 <see cref="T:System.Collections.Generic.ICollection`1" /> 的类型无法自动转换为目标 <paramref name="array" /> 的类型。</exception>
  361. </member>
  362. <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#IsSynchronized">
  363. <summary>获取一个值,该值指示是否同步对 <see cref="T:System.Collections.ICollection" /> 的访问(线程安全)。</summary>
  364. <returns>如果对 true 的访问是同步的(线程安全),则为 <see cref="T:System.Collections.ICollection" />;否则为 false。在 <see cref="T:System.Collections.Generic.Dictionary`2" /> 的默认实现中,此属性始终返回 false。</returns>
  365. </member>
  366. <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#SyncRoot">
  367. <summary>获取可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。</summary>
  368. <returns>可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。</returns>
  369. </member>
  370. <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
  371. <summary>将指定的键和值添加到字典中。</summary>
  372. <param name="key">要用作键的对象。</param>
  373. <param name="value">要用作值的对象。</param>
  374. <exception cref="T:System.ArgumentNullException">
  375. <paramref name="key" /> 为 null。</exception>
  376. <exception cref="T:System.ArgumentException">
  377. <paramref name="key" /> 属于不能分配给 <paramref name="TKey" /> 的键类型 <see cref="T:System.Collections.Generic.Dictionary`2" /> 的类型。- 或 -<paramref name="value" /> 属于不能分配给 <paramref name="TValue" />(<see cref="T:System.Collections.Generic.Dictionary`2" /> 中的值的类型)的类型。- 或 -<see cref="T:System.Collections.Generic.Dictionary`2" /> 中已存在相同键的值。</exception>
  378. </member>
  379. <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Contains(System.Object)">
  380. <summary>确定是否 <see cref="T:System.Collections.IDictionary" /> 包含带有指定键的元素。</summary>
  381. <returns>如果 true 包含具有指定键的元素,则为 <see cref="T:System.Collections.IDictionary" />;否则为 false。</returns>
  382. <param name="key">要在 <see cref="T:System.Collections.IDictionary" /> 中定位的键。</param>
  383. <exception cref="T:System.ArgumentNullException">
  384. <paramref name="key" /> 为 null。</exception>
  385. </member>
  386. <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#GetEnumerator">
  387. <summary>返回 <see cref="T:System.Collections.IDictionaryEnumerator" /> 的 <see cref="T:System.Collections.IDictionary" />。</summary>
  388. <returns>用于 <see cref="T:System.Collections.IDictionaryEnumerator" /> 的 <see cref="T:System.Collections.IDictionary" />。</returns>
  389. </member>
  390. <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#IsFixedSize">
  391. <summary>获取一个值,该值指示 <see cref="T:System.Collections.IDictionary" /> 是否具有固定大小。</summary>
  392. <returns>如果 true 具有固定大小,则为 <see cref="T:System.Collections.IDictionary" />;否则为 false。在 <see cref="T:System.Collections.Generic.Dictionary`2" /> 的默认实现中,此属性始终返回 false。</returns>
  393. </member>
  394. <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#IsReadOnly">
  395. <summary>获取一个值,该值指示 <see cref="T:System.Collections.IDictionary" /> 是否为只读。</summary>
  396. <returns>如果 true 是只读的,则为 <see cref="T:System.Collections.IDictionary" />;否则为 false。在 <see cref="T:System.Collections.Generic.Dictionary`2" /> 的默认实现中,此属性始终返回 false。</returns>
  397. </member>
  398. <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Item(System.Object)">
  399. <summary>获取或设置具有指定键的值。</summary>
  400. <returns>如果 <paramref name="key" /> 不在字典中或 <paramref name="key" /> 的类型属于不可分配给 <see cref="T:System.Collections.Generic.Dictionary`2" /> 的键类型 <paramref name="TKey" />,则为与指定的键关联的值或为 null。</returns>
  401. <param name="key">要获取的值的键。</param>
  402. <exception cref="T:System.ArgumentNullException">
  403. <paramref name="key" /> 为 null。</exception>
  404. <exception cref="T:System.ArgumentException">正在分配值,并且 <paramref name="key" /> 属于不能分配给 <paramref name="TKey" /> 的键类型 <see cref="T:System.Collections.Generic.Dictionary`2" /> 的类型。- 或 -正在分配值,并且 <paramref name="value" /> 属于不能分配给 <paramref name="TValue" /> 的值类型 <see cref="T:System.Collections.Generic.Dictionary`2" /> 的类型。</exception>
  405. </member>
  406. <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Keys">
  407. <summary>获取包含 <see cref="T:System.Collections.ICollection" /> 的键的 <see cref="T:System.Collections.IDictionary" />。</summary>
  408. <returns>一个 <see cref="T:System.Collections.ICollection" />,包含 <see cref="T:System.Collections.IDictionary" /> 的键。</returns>
  409. </member>
  410. <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Remove(System.Object)">
  411. <summary>从 <see cref="T:System.Collections.IDictionary" /> 中移除带有指定键的元素。</summary>
  412. <param name="key">要移除的元素的键。</param>
  413. <exception cref="T:System.ArgumentNullException">
  414. <paramref name="key" /> 为 null。</exception>
  415. </member>
  416. <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Values">
  417. <summary>获取一个 <see cref="T:System.Collections.ICollection" />,它包含 <see cref="T:System.Collections.IDictionary" /> 中的值。</summary>
  418. <returns>一个 <see cref="T:System.Collections.ICollection" />,它包含 <see cref="T:System.Collections.IDictionary" /> 中的值。</returns>
  419. </member>
  420. <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IEnumerable#GetEnumerator">
  421. <summary>返回一个循环访问集合的枚举器。</summary>
  422. <returns>可用于循环访问集合的 <see cref="T:System.Collections.IEnumerator" />。</returns>
  423. </member>
  424. <member name="M:System.Collections.Generic.Dictionary`2.TryGetValue(`0,`1@)">
  425. <summary>获取与指定键关联的值。</summary>
  426. <returns>如果 true 包含具有指定键的元素,则为 <see cref="T:System.Collections.Generic.Dictionary`2" />;否则为 false。</returns>
  427. <param name="key">要获取的值的键。</param>
  428. <param name="value">当此方法返回时,如果找到指定键,则包含与该键相关的值;否则包含 <paramref name="value" /> 参数类型的默认值。此参数未经初始化即被传递。</param>
  429. <exception cref="T:System.ArgumentNullException">
  430. <paramref name="key" /> 为 null。</exception>
  431. </member>
  432. <member name="P:System.Collections.Generic.Dictionary`2.Values">
  433. <summary>获得一个包含 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中的值的集合。</summary>
  434. <returns>一个 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" />,包含 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中的值。</returns>
  435. </member>
  436. <member name="T:System.Collections.Generic.Dictionary`2.Enumerator">
  437. <summary>枚举 <see cref="T:System.Collections.Generic.Dictionary`2" /> 的元素。</summary>
  438. </member>
  439. <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.Current">
  440. <summary>获取枚举数当前位置的元素。</summary>
  441. <returns>
  442. <see cref="T:System.Collections.Generic.Dictionary`2" /> 中位于枚举数当前位置的元素。</returns>
  443. </member>
  444. <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.Dispose">
  445. <summary>释放由 <see cref="T:System.Collections.Generic.Dictionary`2.Enumerator" /> 使用的所有资源。</summary>
  446. </member>
  447. <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.MoveNext">
  448. <summary>使枚举数前进到 <see cref="T:System.Collections.Generic.Dictionary`2" /> 的下一个元素。</summary>
  449. <returns>如果枚举数成功地推进到下一个元素,则为 true;如果枚举数越过集合的结尾,则为 false。</returns>
  450. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  451. </member>
  452. <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Entry">
  453. <summary>获取枚举数当前位置的元素。</summary>
  454. <returns>字典中位于枚举数当前位置的元素,如 <see cref="T:System.Collections.DictionaryEntry" />。</returns>
  455. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  456. </member>
  457. <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Key">
  458. <summary>获取位于枚举数当前位置的元素的键。</summary>
  459. <returns>字典中位于枚举数当前位置的元素的键。</returns>
  460. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  461. </member>
  462. <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Value">
  463. <summary>获取位于枚举数当前位置的元素的值。</summary>
  464. <returns>字典中位于枚举数当前位置的元素的值。</returns>
  465. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  466. </member>
  467. <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IEnumerator#Current">
  468. <summary>获取枚举数当前位置的元素。</summary>
  469. <returns>集合中位于枚举数当前位置的元素,如 <see cref="T:System.Object" />。</returns>
  470. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  471. </member>
  472. <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IEnumerator#Reset">
  473. <summary>将枚举数设置为其初始位置,该位置位于集合中第一个元素之前。</summary>
  474. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  475. </member>
  476. <member name="T:System.Collections.Generic.Dictionary`2.KeyCollection">
  477. <summary>表示 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中键的集合。此类不能被继承。</summary>
  478. </member>
  479. <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.#ctor(System.Collections.Generic.Dictionary{`0,`1})">
  480. <summary>初始化 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 类的新实例,该实例反映指定的 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中的键。</summary>
  481. <param name="dictionary">
  482. <see cref="T:System.Collections.Generic.Dictionary`2" />,其键反映在新的 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 中。</param>
  483. <exception cref="T:System.ArgumentNullException">
  484. <paramref name="dictionary" /> 为 null。</exception>
  485. </member>
  486. <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.CopyTo(`0[],System.Int32)">
  487. <summary>从指定数组索引开始将 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 元素复制到现有一维 <see cref="T:System.Array" /> 中。</summary>
  488. <param name="array">作为从 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 复制的元素的目标位置的一维 <see cref="T:System.Array" />。<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  489. <param name="index">
  490. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  491. <exception cref="T:System.ArgumentNullException">
  492. <paramref name="array" /> 为 null。</exception>
  493. <exception cref="T:System.ArgumentOutOfRangeException">
  494. <paramref name="index" /> 小于零。</exception>
  495. <exception cref="T:System.ArgumentException">源 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 中的元素数目大于从 <paramref name="index" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。</exception>
  496. </member>
  497. <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Count">
  498. <summary>获取 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 中包含的元素数。</summary>
  499. <returns>
  500. <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 中包含的元素个数。检索此属性的值的运算复杂度为 O(1)。</returns>
  501. </member>
  502. <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.GetEnumerator">
  503. <summary>返回循环访问 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 的枚举数。</summary>
  504. <returns>用于 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 的 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator" />。</returns>
  505. </member>
  506. <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Add(`0)">
  507. <summary>将某项添加到 <see cref="T:System.Collections.Generic.ICollection`1" /> 中。此实现总是引发 <see cref="T:System.NotSupportedException" />。</summary>
  508. <param name="item">要添加到 <see cref="T:System.Collections.Generic.ICollection`1" /> 的对象。</param>
  509. <exception cref="T:System.NotSupportedException">总是引发。</exception>
  510. </member>
  511. <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Clear">
  512. <summary>从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中移除所有项。此实现总是引发 <see cref="T:System.NotSupportedException" />。</summary>
  513. <exception cref="T:System.NotSupportedException">总是引发。</exception>
  514. </member>
  515. <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Contains(`0)">
  516. <summary>确定 <see cref="T:System.Collections.Generic.ICollection`1" /> 是否包含特定值。</summary>
  517. <returns>如果在 <see cref="T:System.Collections.Generic.ICollection`1" /> 中找到 <paramref name="item" />,则为 true;否则为 false。</returns>
  518. <param name="item">要在 <see cref="T:System.Collections.Generic.ICollection`1" /> 中定位的对象。</param>
  519. </member>
  520. <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#IsReadOnly">
  521. <summary>获取一个值,该值指示 <see cref="T:System.Collections.Generic.ICollection`1" /> 是否为只读。</summary>
  522. <returns>如果 <see cref="T:System.Collections.Generic.ICollection`1" /> 为只读,则为 true;否则为 false。在 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 的默认实现中,此属性始终返回 true。</returns>
  523. </member>
  524. <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Remove(`0)">
  525. <summary>从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中移除特定对象的第一个匹配项。此实现总是引发 <see cref="T:System.NotSupportedException" />。</summary>
  526. <returns>如果已从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中成功移除 <paramref name="item" />,则为 true;否则为 false。如果在原始 <see cref="T:System.Collections.Generic.ICollection`1" /> 中没有找到 <paramref name="item" />,此方法也会返回 false。</returns>
  527. <param name="item">要从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中移除的对象。</param>
  528. <exception cref="T:System.NotSupportedException">总是引发。</exception>
  529. </member>
  530. <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  531. <summary>返回一个循环访问集合的枚举器。</summary>
  532. <returns>可用于循环访问集合的 <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
  533. </member>
  534. <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  535. <summary>从特定的 <see cref="T:System.Array" /> 索引处开始,将 <see cref="T:System.Collections.ICollection" /> 的元素复制到一个 <see cref="T:System.Array" /> 中。</summary>
  536. <param name="array">作为从 <see cref="T:System.Collections.ICollection" /> 复制的元素的目标的一维 <see cref="T:System.Array" />。<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  537. <param name="index">
  538. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  539. <exception cref="T:System.ArgumentNullException">
  540. <paramref name="array" /> 为 null。</exception>
  541. <exception cref="T:System.ArgumentOutOfRangeException">
  542. <paramref name="index" /> 小于零。</exception>
  543. <exception cref="T:System.ArgumentException">
  544. <paramref name="array" /> 是多维的。- 或 -<paramref name="array" /> 没有从零开始的索引。- 或 -源 <see cref="T:System.Collections.ICollection" /> 中的元素数目大于从 <paramref name="index" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。- 或 -源 <see cref="T:System.Collections.ICollection" /> 的类型无法自动转换为目标 <paramref name="array" /> 的类型。</exception>
  545. </member>
  546. <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#IsSynchronized">
  547. <summary>获取一个值,该值指示是否同步对 <see cref="T:System.Collections.ICollection" /> 的访问(线程安全)。</summary>
  548. <returns>如果对 <see cref="T:System.Collections.ICollection" /> 的访问是同步的(线程安全),则为 true;否则为 false。在 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 的默认实现中,此属性始终返回 false。</returns>
  549. </member>
  550. <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#SyncRoot">
  551. <summary>获取可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。</summary>
  552. <returns>可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。在 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 的默认实现中,此属性始终返回当前实例。</returns>
  553. </member>
  554. <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#IEnumerable#GetEnumerator">
  555. <summary>返回一个循环访问集合的枚举器。</summary>
  556. <returns>可用于循环访问集合的 <see cref="T:System.Collections.IEnumerator" />。</returns>
  557. </member>
  558. <member name="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator">
  559. <summary>枚举 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 的元素。</summary>
  560. </member>
  561. <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.Current">
  562. <summary>获取枚举数当前位置的元素。</summary>
  563. <returns>
  564. <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 中位于该枚举数当前位置的元素。</returns>
  565. </member>
  566. <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.Dispose">
  567. <summary>释放由 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator" /> 使用的所有资源。</summary>
  568. </member>
  569. <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.MoveNext">
  570. <summary>使枚举数前进到 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 的下一个元素。</summary>
  571. <returns>如果枚举数已成功地推进到下一个元素,则为 true;如果枚举数传递到集合的末尾,则为 false。</returns>
  572. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  573. </member>
  574. <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Current">
  575. <summary>获取枚举数当前位置的元素。</summary>
  576. <returns>集合中位于枚举数当前位置的元素。</returns>
  577. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  578. </member>
  579. <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Reset">
  580. <summary>将枚举数设置为其初始位置,该位置位于集合中第一个元素之前。</summary>
  581. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  582. </member>
  583. <member name="T:System.Collections.Generic.Dictionary`2.ValueCollection">
  584. <summary>表示 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中值的集合。此类不能被继承。</summary>
  585. </member>
  586. <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.#ctor(System.Collections.Generic.Dictionary{`0,`1})">
  587. <summary>初始化 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 类的新实例,该实例反映指定的 <see cref="T:System.Collections.Generic.Dictionary`2" /> 中的值。</summary>
  588. <param name="dictionary">
  589. <see cref="T:System.Collections.Generic.Dictionary`2" />,其值反映在新的 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 中。</param>
  590. <exception cref="T:System.ArgumentNullException">
  591. <paramref name="dictionary" /> 为 null。</exception>
  592. </member>
  593. <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.CopyTo(`1[],System.Int32)">
  594. <summary>从指定数组索引开始将 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 元素复制到现有一维 <see cref="T:System.Array" /> 中。</summary>
  595. <param name="array">作为从 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 复制的元素的目标位置的一维 <see cref="T:System.Array" />。<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  596. <param name="index">
  597. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  598. <exception cref="T:System.ArgumentNullException">
  599. <paramref name="array" /> 为 null。</exception>
  600. <exception cref="T:System.ArgumentOutOfRangeException">
  601. <paramref name="index" /> 小于零。</exception>
  602. <exception cref="T:System.ArgumentException">源 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 中的元素数目大于从 <paramref name="index" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。</exception>
  603. </member>
  604. <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Count">
  605. <summary>获取 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 中包含的元素数。</summary>
  606. <returns>
  607. <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 中包含的元素个数。</returns>
  608. </member>
  609. <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.GetEnumerator">
  610. <summary>返回循环访问 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 的枚举数。</summary>
  611. <returns>用于 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 的 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator" />。</returns>
  612. </member>
  613. <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Add(`1)">
  614. <summary>将某项添加到 <see cref="T:System.Collections.Generic.ICollection`1" /> 中。此实现总是引发 <see cref="T:System.NotSupportedException" />。</summary>
  615. <param name="item">要添加到 <see cref="T:System.Collections.Generic.ICollection`1" /> 的对象。</param>
  616. <exception cref="T:System.NotSupportedException">总是引发。</exception>
  617. </member>
  618. <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Clear">
  619. <summary>从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中移除所有项。此实现总是引发 <see cref="T:System.NotSupportedException" />。</summary>
  620. <exception cref="T:System.NotSupportedException">总是引发。</exception>
  621. </member>
  622. <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Contains(`1)">
  623. <summary>确定 <see cref="T:System.Collections.Generic.ICollection`1" /> 是否包含特定值。</summary>
  624. <returns>如果在 <see cref="T:System.Collections.Generic.ICollection`1" /> 中找到 <paramref name="item" />,则为 true;否则为 false。</returns>
  625. <param name="item">要在 <see cref="T:System.Collections.Generic.ICollection`1" /> 中定位的对象。</param>
  626. </member>
  627. <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#IsReadOnly">
  628. <summary>获取一个值,该值指示 <see cref="T:System.Collections.Generic.ICollection`1" /> 是否为只读。</summary>
  629. <returns>如果 <see cref="T:System.Collections.Generic.ICollection`1" /> 为只读,则为 true;否则为 false。在 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 的默认实现中,此属性始终返回 true。</returns>
  630. </member>
  631. <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Remove(`1)">
  632. <summary>从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中移除特定对象的第一个匹配项。此实现总是引发 <see cref="T:System.NotSupportedException" />。</summary>
  633. <returns>如果已从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中成功移除 <paramref name="item" />,则为 true;否则为 false。如果在原始 <see cref="T:System.Collections.Generic.ICollection`1" /> 中没有找到 <paramref name="item" />,此方法也会返回 false。</returns>
  634. <param name="item">要从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中移除的对象。</param>
  635. <exception cref="T:System.NotSupportedException">总是引发。</exception>
  636. </member>
  637. <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  638. <summary>返回一个循环访问集合的枚举器。</summary>
  639. <returns>可用于循环访问集合的 <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
  640. </member>
  641. <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  642. <summary>从特定的 <see cref="T:System.Array" /> 索引处开始,将 <see cref="T:System.Collections.ICollection" /> 的元素复制到一个 <see cref="T:System.Array" /> 中。</summary>
  643. <param name="array">作为从 <see cref="T:System.Collections.ICollection" /> 复制的元素的目标的一维 <see cref="T:System.Array" />。<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  644. <param name="index">
  645. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  646. <exception cref="T:System.ArgumentNullException">
  647. <paramref name="array" /> 为 null。</exception>
  648. <exception cref="T:System.ArgumentOutOfRangeException">
  649. <paramref name="index" /> 小于零。</exception>
  650. <exception cref="T:System.ArgumentException">
  651. <paramref name="array" /> 是多维的。- 或 -<paramref name="array" /> 没有从零开始的索引。- 或 -源 <see cref="T:System.Collections.ICollection" /> 中的元素数目大于从 <paramref name="index" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。- 或 -源 <see cref="T:System.Collections.ICollection" /> 的类型无法自动转换为目标 <paramref name="array" /> 的类型。</exception>
  652. </member>
  653. <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#IsSynchronized">
  654. <summary>获取一个值,该值指示是否同步对 <see cref="T:System.Collections.ICollection" /> 的访问(线程安全)。</summary>
  655. <returns>如果对 <see cref="T:System.Collections.ICollection" /> 的访问是同步的(线程安全),则为 true;否则为 false。在 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 的默认实现中,此属性始终返回 false。</returns>
  656. </member>
  657. <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#SyncRoot">
  658. <summary>获取可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。</summary>
  659. <returns>可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。在 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 的默认实现中,此属性始终返回当前实例。</returns>
  660. </member>
  661. <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#IEnumerable#GetEnumerator">
  662. <summary>返回一个循环访问集合的枚举器。</summary>
  663. <returns>可用于循环访问集合的 <see cref="T:System.Collections.IEnumerator" />。</returns>
  664. </member>
  665. <member name="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator">
  666. <summary>枚举 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 的元素。</summary>
  667. </member>
  668. <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.Current">
  669. <summary>获取枚举数当前位置的元素。</summary>
  670. <returns>
  671. <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 中位于枚举数当前位置的元素。</returns>
  672. </member>
  673. <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.Dispose">
  674. <summary>释放由 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator" /> 使用的所有资源。</summary>
  675. </member>
  676. <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.MoveNext">
  677. <summary>使枚举器前进到 <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection" /> 的下一个元素。</summary>
  678. <returns>如果枚举数成功地推进到下一个元素,则为 true;如果枚举数越过集合的结尾,则为 false。</returns>
  679. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  680. </member>
  681. <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Current">
  682. <summary>获取枚举数当前位置的元素。</summary>
  683. <returns>集合中位于枚举数当前位置的元素。</returns>
  684. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  685. </member>
  686. <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Reset">
  687. <summary>将枚举数设置为其初始位置,该位置位于集合中第一个元素之前。</summary>
  688. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  689. </member>
  690. <member name="T:System.Collections.Generic.EqualityComparer`1">
  691. <summary>为 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 泛型接口的实现提供基类。</summary>
  692. <typeparam name="T">要比较的对象的类型。</typeparam>
  693. </member>
  694. <member name="M:System.Collections.Generic.EqualityComparer`1.#ctor">
  695. <summary>初始化 <see cref="T:System.Collections.Generic.EqualityComparer`1" /> 类的新实例。</summary>
  696. </member>
  697. <member name="P:System.Collections.Generic.EqualityComparer`1.Default">
  698. <summary>返回一个默认的相等比较器,用于比较此泛型参数指定的类型。</summary>
  699. <returns>用于类型 <paramref name="T" /> 的 <see cref="T:System.Collections.Generic.EqualityComparer`1" /> 类的默认实例。</returns>
  700. </member>
  701. <member name="M:System.Collections.Generic.EqualityComparer`1.Equals(`0,`0)">
  702. <summary>在派生类中重写时,确定类型 <paramref name="T" /> 的两个对象是否相等。</summary>
  703. <returns>如果指定的对象相等,则为 true;否则为 false。</returns>
  704. <param name="x">要比较的第一个对象。</param>
  705. <param name="y">要比较的第二个对象。</param>
  706. </member>
  707. <member name="M:System.Collections.Generic.EqualityComparer`1.GetHashCode(`0)">
  708. <summary>在派生类中重写时,用作指定对象的哈希算法和数据结构(如哈希表)的哈希函数。</summary>
  709. <returns>指定对象的哈希代码。</returns>
  710. <param name="obj">要为其获取哈希代码的对象。</param>
  711. <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is null.</exception>
  712. </member>
  713. <member name="M:System.Collections.Generic.EqualityComparer`1.System#Collections#IEqualityComparer#Equals(System.Object,System.Object)">
  714. <summary>确定指定的对象是否相等。</summary>
  715. <returns>如果指定的对象相等,则为 true;否则为 false。</returns>
  716. <param name="x">要比较的第一个对象。</param>
  717. <param name="y">要比较的第二个对象。</param>
  718. <exception cref="T:System.ArgumentException">
  719. <paramref name="x" /> or <paramref name="y" /> is of a type that cannot be cast to type <paramref name="T" />.</exception>
  720. </member>
  721. <member name="M:System.Collections.Generic.EqualityComparer`1.System#Collections#IEqualityComparer#GetHashCode(System.Object)">
  722. <summary>返回指定对象的哈希代码。</summary>
  723. <returns>指定对象的哈希代码。</returns>
  724. <param name="obj">将为其返回哈希代码的 <see cref="T:System.Object" />。</param>
  725. <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is null.-or-<paramref name="obj" /> is of a type that cannot be cast to type <paramref name="T" />.</exception>
  726. </member>
  727. <member name="T:System.Collections.Generic.HashSet`1">
  728. <summary>表示值的集。若要浏览此类型的.NET Framework 源代码,请参阅 Reference Source。</summary>
  729. <typeparam name="T">哈希集中的元素类型。</typeparam>
  730. </member>
  731. <member name="M:System.Collections.Generic.HashSet`1.#ctor">
  732. <summary>初始化 <see cref="T:System.Collections.Generic.HashSet`1" /> 类的一个新实例,该实例为空并使用集类型的默认相等比较器。</summary>
  733. </member>
  734. <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
  735. <summary>初始化 <see cref="T:System.Collections.Generic.HashSet`1" /> 类的一个新实例,该实例使用集类型的默认相等比较器,包含从指定的集合复制的元素,并且有足够的容量容纳所复制的这些元素。</summary>
  736. <param name="collection">其元素被复制到新集中的集合。</param>
  737. <exception cref="T:System.ArgumentNullException">
  738. <paramref name="collection" /> 为 null。</exception>
  739. </member>
  740. <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0})">
  741. <summary>初始化 <see cref="T:System.Collections.Generic.HashSet`1" /> 类的一个新实例,该实例使用集类型的指定相等比较器,包含从指定的集合复制的元素,并且有足够的容量容纳所复制的这些元素。</summary>
  742. <param name="collection">其元素被复制到新集中的集合。</param>
  743. <param name="comparer">在比较集中的值时使用的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 实现,或为 null 以使用集类型的默认 <see cref="T:System.Collections.Generic.EqualityComparer`1" /> 实现。</param>
  744. <exception cref="T:System.ArgumentNullException">
  745. <paramref name="collection" /> 为 null。</exception>
  746. </member>
  747. <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEqualityComparer{`0})">
  748. <summary>初始化 <see cref="T:System.Collections.Generic.HashSet`1" /> 类的一个新实例,该实例为空并使用集类型的指定相等比较器。</summary>
  749. <param name="comparer">在比较集中的值时使用的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 实现,或为 null 以使用集类型的默认 <see cref="T:System.Collections.Generic.EqualityComparer`1" /> 实现。</param>
  750. </member>
  751. <member name="M:System.Collections.Generic.HashSet`1.Add(`0)">
  752. <summary>将指定的元素添加到集中。</summary>
  753. <returns>如果该元素添加到 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象中则为 true;如果该元素已存在则为 false。</returns>
  754. <param name="item">要添加到集中的元素。</param>
  755. </member>
  756. <member name="M:System.Collections.Generic.HashSet`1.Clear">
  757. <summary>从 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象中移除所有元素。</summary>
  758. </member>
  759. <member name="P:System.Collections.Generic.HashSet`1.Comparer">
  760. <summary>获取用于确定集中的值是否相等的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 对象。</summary>
  761. <returns>用于确定集中的值是否相等的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 对象。</returns>
  762. </member>
  763. <member name="M:System.Collections.Generic.HashSet`1.Contains(`0)">
  764. <summary>确定 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象是否包含指定的元素。</summary>
  765. <returns>如果 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象包含指定的元素,则为 true;否则为 false。</returns>
  766. <param name="item">要在 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象中查找的元素。</param>
  767. </member>
  768. <member name="M:System.Collections.Generic.HashSet`1.CopyTo(`0[])">
  769. <summary>将 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象的元素复制到数组中。</summary>
  770. <param name="array">作为从 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象复制的元素的目标的一维数组。该数组的索引必须从零开始。</param>
  771. <exception cref="T:System.ArgumentNullException">
  772. <paramref name="array" /> 为 null。</exception>
  773. </member>
  774. <member name="M:System.Collections.Generic.HashSet`1.CopyTo(`0[],System.Int32)">
  775. <summary>从指定数组索引处开始,将 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象的元素复制到数组中。</summary>
  776. <param name="array">作为从 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象复制的元素的目标的一维数组。该数组的索引必须从零开始。</param>
  777. <param name="arrayIndex">
  778. <paramref name="array" /> 中从零开始的索引,从此处开始复制。</param>
  779. <exception cref="T:System.ArgumentNullException">
  780. <paramref name="array" /> 为 null。</exception>
  781. <exception cref="T:System.ArgumentOutOfRangeException">
  782. <paramref name="arrayIndex" /> 小于 0。</exception>
  783. <exception cref="T:System.ArgumentException">
  784. <paramref name="arrayIndex" /> 大于目标 <paramref name="array" /> 的长度。</exception>
  785. </member>
  786. <member name="M:System.Collections.Generic.HashSet`1.CopyTo(`0[],System.Int32,System.Int32)">
  787. <summary>从指定数组索引处开始,将 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象的指定数目的元素复制到数组中。</summary>
  788. <param name="array">作为从 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象复制的元素的目标的一维数组。该数组的索引必须从零开始。</param>
  789. <param name="arrayIndex">
  790. <paramref name="array" /> 中从零开始的索引,从此处开始复制。</param>
  791. <param name="count">要复制到 <paramref name="array" /> 的元素的数目。</param>
  792. <exception cref="T:System.ArgumentNullException">
  793. <paramref name="array" /> 为 null。</exception>
  794. <exception cref="T:System.ArgumentOutOfRangeException">
  795. <paramref name="arrayIndex" /> 小于 0。- 或 -<paramref name="count" /> 小于 0。</exception>
  796. <exception cref="T:System.ArgumentException">
  797. <paramref name="arrayIndex" /> 大于目标 <paramref name="array" /> 的长度。- 或 -<paramref name="count" /> 大于从 <paramref name="index" /> 到目标 <paramref name="array" /> 末尾的可用空间。</exception>
  798. </member>
  799. <member name="P:System.Collections.Generic.HashSet`1.Count">
  800. <summary>获取集中包含的元素数。</summary>
  801. <returns>集中包含的元素数。</returns>
  802. </member>
  803. <member name="M:System.Collections.Generic.HashSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0})">
  804. <summary>从当前 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象中移除指定集合中的所有元素。</summary>
  805. <param name="other">要从 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象中移除的项的集合。</param>
  806. <exception cref="T:System.ArgumentNullException">
  807. <paramref name="other" /> 为 null。</exception>
  808. </member>
  809. <member name="M:System.Collections.Generic.HashSet`1.GetEnumerator">
  810. <summary>返回循环访问 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象的枚举器。</summary>
  811. <returns>
  812. <see cref="T:System.Collections.Generic.HashSet`1" /> 对象的 <see cref="T:System.Collections.Generic.HashSet`1.Enumerator" /> 对象。</returns>
  813. </member>
  814. <member name="M:System.Collections.Generic.HashSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0})">
  815. <summary>修改当前的 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象,以仅包含该对象和指定集合中存在的元素。</summary>
  816. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象进行比较的集合。</param>
  817. <exception cref="T:System.ArgumentNullException">
  818. <paramref name="other" /> 为 null。</exception>
  819. </member>
  820. <member name="M:System.Collections.Generic.HashSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
  821. <summary>确定 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象是否为指定集合的真子集。</summary>
  822. <returns>如果 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象是 <paramref name="other" /> 的真子集,则为 true;否则为 false。</returns>
  823. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象进行比较的集合。</param>
  824. <exception cref="T:System.ArgumentNullException">
  825. <paramref name="other" /> 为 null。</exception>
  826. </member>
  827. <member name="M:System.Collections.Generic.HashSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
  828. <summary>确定 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象是否为指定集合的真超集。</summary>
  829. <returns>如果 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象是 <paramref name="other" /> 的真超集,则为 true;否则为 false。</returns>
  830. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象进行比较的集合。</param>
  831. <exception cref="T:System.ArgumentNullException">
  832. <paramref name="other" /> 为 null。</exception>
  833. </member>
  834. <member name="M:System.Collections.Generic.HashSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
  835. <summary>确定 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象是否为指定集合的子集。</summary>
  836. <returns>如果 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象是 <paramref name="other" /> 的子集,则为 true;否则为 false。</returns>
  837. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象进行比较的集合。</param>
  838. <exception cref="T:System.ArgumentNullException">
  839. <paramref name="other" /> 为 null。</exception>
  840. </member>
  841. <member name="M:System.Collections.Generic.HashSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
  842. <summary>确定 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象是否为指定集合的超集。</summary>
  843. <returns>如果 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象是 <paramref name="other" /> 的超集,则为 true;否则为 false。</returns>
  844. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象进行比较的集合。</param>
  845. <exception cref="T:System.ArgumentNullException">
  846. <paramref name="other" /> 为 null。</exception>
  847. </member>
  848. <member name="M:System.Collections.Generic.HashSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
  849. <summary>确定是否当前的 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象和指定的集合共享通用元素。</summary>
  850. <returns>如果 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象和 <paramref name="other" /> 共享至少一个公共元素,则为 true;否则为 false。</returns>
  851. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象进行比较的集合。</param>
  852. <exception cref="T:System.ArgumentNullException">
  853. <paramref name="other" /> 为 null。</exception>
  854. </member>
  855. <member name="M:System.Collections.Generic.HashSet`1.Remove(`0)">
  856. <summary>从 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象移除指定元素。</summary>
  857. <returns>如果成功找到并移除该元素,则为 true;否则为 false。如果未在 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象中找到 <paramref name="item" />,则此方法返回 false。</returns>
  858. <param name="item">要移除的元素。</param>
  859. </member>
  860. <member name="M:System.Collections.Generic.HashSet`1.RemoveWhere(System.Predicate{`0})">
  861. <summary>从 <see cref="T:System.Collections.Generic.HashSet`1" /> 集合中移除与指定的谓词所定义的条件相匹配的所有元素。</summary>
  862. <returns>从 <see cref="T:System.Collections.Generic.HashSet`1" /> 集合中移除的元素数。</returns>
  863. <param name="match">
  864. <see cref="T:System.Predicate`1" /> 委托,用于定义要移除的元素应满足的条件。</param>
  865. <exception cref="T:System.ArgumentNullException">
  866. <paramref name="match" /> 为 null。</exception>
  867. </member>
  868. <member name="M:System.Collections.Generic.HashSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
  869. <summary>确定是否 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象和指定集合包含相同的元素。</summary>
  870. <returns>如果 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象与 <paramref name="other" /> 相等,则为 true;否则为 false。</returns>
  871. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象进行比较的集合。</param>
  872. <exception cref="T:System.ArgumentNullException">
  873. <paramref name="other" /> 为 null。</exception>
  874. </member>
  875. <member name="M:System.Collections.Generic.HashSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
  876. <summary>修改当前 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象以仅包含存在于该对象中或存在于指定集合中的元素(但并非两者)。</summary>
  877. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象进行比较的集合。</param>
  878. <exception cref="T:System.ArgumentNullException">
  879. <paramref name="other" /> 为 null。</exception>
  880. </member>
  881. <member name="M:System.Collections.Generic.HashSet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
  882. <summary>向 <see cref="T:System.Collections.Generic.ICollection`1" /> 对象添加一个项。</summary>
  883. <param name="item">要添加到 <see cref="T:System.Collections.Generic.ICollection`1" /> 对象中的对象。</param>
  884. <exception cref="T:System.NotSupportedException">
  885. <see cref="T:System.Collections.Generic.ICollection`1" /> 为只读。</exception>
  886. </member>
  887. <member name="P:System.Collections.Generic.HashSet`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
  888. <summary>获取一个值,该值指示集合是否为只读。</summary>
  889. <returns>如果该集合为只读,则为 true;否则为 false。</returns>
  890. </member>
  891. <member name="M:System.Collections.Generic.HashSet`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  892. <summary>返回循环访问集合的枚举数。</summary>
  893. <returns>一个可用于循环访问集合的 <see cref="T:System.Collections.Generic.IEnumerator`1" /> 对象。</returns>
  894. </member>
  895. <member name="M:System.Collections.Generic.HashSet`1.System#Collections#IEnumerable#GetEnumerator">
  896. <summary>返回循环访问集合的枚举数。</summary>
  897. <returns>一个可用于循环访问集合的 <see cref="T:System.Collections.IEnumerator" /> 对象。</returns>
  898. </member>
  899. <member name="M:System.Collections.Generic.HashSet`1.TrimExcess">
  900. <summary>将 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象的容量设置为它包含的实际元素数,向上舍入为接近的特定于实现的值。</summary>
  901. </member>
  902. <member name="M:System.Collections.Generic.HashSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0})">
  903. <summary>修改当前 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象以包含存在于该对象中、指定集合中或两者中的所有元素。</summary>
  904. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象进行比较的集合。</param>
  905. <exception cref="T:System.ArgumentNullException">
  906. <paramref name="other" /> 为 null。</exception>
  907. </member>
  908. <member name="T:System.Collections.Generic.HashSet`1.Enumerator">
  909. <summary>枚举 <see cref="T:System.Collections.Generic.HashSet`1" /> 对象的元素。</summary>
  910. <filterpriority>2</filterpriority>
  911. </member>
  912. <member name="P:System.Collections.Generic.HashSet`1.Enumerator.Current">
  913. <summary>获取枚举数当前位置的元素。</summary>
  914. <returns>
  915. <see cref="T:System.Collections.Generic.HashSet`1" /> 集合中位于枚举器当前位置的元素。</returns>
  916. </member>
  917. <member name="M:System.Collections.Generic.HashSet`1.Enumerator.Dispose">
  918. <summary>释放 <see cref="T:System.Collections.Generic.HashSet`1.Enumerator" /> 对象使用的所有资源。</summary>
  919. </member>
  920. <member name="M:System.Collections.Generic.HashSet`1.Enumerator.MoveNext">
  921. <summary>将枚举器前进到 <see cref="T:System.Collections.Generic.HashSet`1" /> 集合的下一个元素。</summary>
  922. <returns>如果枚举数成功地推进到下一个元素,则为 true;如果枚举数越过集合的结尾,则为 false。</returns>
  923. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  924. </member>
  925. <member name="P:System.Collections.Generic.HashSet`1.Enumerator.System#Collections#IEnumerator#Current">
  926. <summary>获取枚举数当前位置的元素。</summary>
  927. <returns>集合中位于枚举数当前位置的元素,如 <see cref="T:System.Object" />。</returns>
  928. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  929. </member>
  930. <member name="M:System.Collections.Generic.HashSet`1.Enumerator.System#Collections#IEnumerator#Reset">
  931. <summary>将枚举数设置为其初始位置,该位置位于集合中第一个元素之前。</summary>
  932. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  933. </member>
  934. <member name="T:System.Collections.Generic.LinkedList`1">
  935. <summary>表示双向链接列表。</summary>
  936. <typeparam name="T">指定链表的元素类型。</typeparam>
  937. <filterpriority>1</filterpriority>
  938. </member>
  939. <member name="M:System.Collections.Generic.LinkedList`1.#ctor">
  940. <summary>初始化为空的 <see cref="T:System.Collections.Generic.LinkedList`1" /> 类的新实例。</summary>
  941. </member>
  942. <member name="M:System.Collections.Generic.LinkedList`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
  943. <summary>初始化 <see cref="T:System.Collections.Generic.LinkedList`1" /> 类的新实例,该实例包含从指定的 <see cref="T:System.Collections.IEnumerable" /> 中复制的元素并且其容量足以容纳所复制的元素数。</summary>
  944. <param name="collection">
  945. <see cref="T:System.Collections.IEnumerable" />,其元素被复制到新的 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中。</param>
  946. <exception cref="T:System.ArgumentNullException">
  947. <paramref name="collection" /> 为 null。</exception>
  948. </member>
  949. <member name="M:System.Collections.Generic.LinkedList`1.AddAfter(System.Collections.Generic.LinkedListNode{`0},System.Collections.Generic.LinkedListNode{`0})">
  950. <summary>在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中指定的现有节点后添加指定的新节点。</summary>
  951. <param name="node">要在其后插入 <paramref name="newNode" /> 的 <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
  952. <param name="newNode">要添加到 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的新 <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
  953. <exception cref="T:System.ArgumentNullException">
  954. <paramref name="node" /> 为 null。- 或 -<paramref name="newNode" /> 为 null。</exception>
  955. <exception cref="T:System.InvalidOperationException">
  956. <paramref name="node" /> 不在当前 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中。- 或 -<paramref name="newNode" /> 属于另一个 <see cref="T:System.Collections.Generic.LinkedList`1" />。</exception>
  957. </member>
  958. <member name="M:System.Collections.Generic.LinkedList`1.AddAfter(System.Collections.Generic.LinkedListNode{`0},`0)">
  959. <summary>在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中指定的现有节点后添加包含指定值的新节点。</summary>
  960. <returns>包含 <paramref name="value" /> 的新 <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</returns>
  961. <param name="node">要在其后插入包含 <paramref name="value" /> 的新 <see cref="T:System.Collections.Generic.LinkedListNode`1" /> 的 <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
  962. <param name="value">要添加到 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的值。</param>
  963. <exception cref="T:System.ArgumentNullException">
  964. <paramref name="node" /> 为 null。</exception>
  965. <exception cref="T:System.InvalidOperationException">
  966. <paramref name="node" /> 不在当前 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中。</exception>
  967. </member>
  968. <member name="M:System.Collections.Generic.LinkedList`1.AddBefore(System.Collections.Generic.LinkedListNode{`0},System.Collections.Generic.LinkedListNode{`0})">
  969. <summary>在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中指定的现有节点前添加指定的新节点。</summary>
  970. <param name="node">要在其前插入 <paramref name="newNode" /> 的 <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
  971. <param name="newNode">要添加到 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的新 <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
  972. <exception cref="T:System.ArgumentNullException">
  973. <paramref name="node" /> 为 null。- 或 -<paramref name="newNode" /> 为 null。</exception>
  974. <exception cref="T:System.InvalidOperationException">
  975. <paramref name="node" /> 不在当前 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中。- 或 -<paramref name="newNode" /> 属于另一个 <see cref="T:System.Collections.Generic.LinkedList`1" />。</exception>
  976. </member>
  977. <member name="M:System.Collections.Generic.LinkedList`1.AddBefore(System.Collections.Generic.LinkedListNode{`0},`0)">
  978. <summary>在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中指定的现有节点前添加包含指定值的新节点。</summary>
  979. <returns>包含 <paramref name="value" /> 的新 <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</returns>
  980. <param name="node">要在其前插入包含 <paramref name="value" /> 的新 <see cref="T:System.Collections.Generic.LinkedListNode`1" /> 的 <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
  981. <param name="value">要添加到 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的值。</param>
  982. <exception cref="T:System.ArgumentNullException">
  983. <paramref name="node" /> 为 null。</exception>
  984. <exception cref="T:System.InvalidOperationException">
  985. <paramref name="node" /> 不在当前 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中。</exception>
  986. </member>
  987. <member name="M:System.Collections.Generic.LinkedList`1.AddFirst(System.Collections.Generic.LinkedListNode{`0})">
  988. <summary>在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的开头处添加指定的新节点。</summary>
  989. <param name="node">要在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的开头处添加的新 <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
  990. <exception cref="T:System.ArgumentNullException">
  991. <paramref name="node" /> 为 null。</exception>
  992. <exception cref="T:System.InvalidOperationException">
  993. <paramref name="node" /> 属于另一个 <see cref="T:System.Collections.Generic.LinkedList`1" />。</exception>
  994. </member>
  995. <member name="M:System.Collections.Generic.LinkedList`1.AddFirst(`0)">
  996. <summary>在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的开头处添加包含指定值的新节点。</summary>
  997. <returns>包含 <paramref name="value" /> 的新 <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</returns>
  998. <param name="value">要在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的开头处添加的值。</param>
  999. </member>
  1000. <member name="M:System.Collections.Generic.LinkedList`1.AddLast(System.Collections.Generic.LinkedListNode{`0})">
  1001. <summary>在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的结尾处添加指定的新节点。</summary>
  1002. <param name="node">要添加至 <see cref="T:System.Collections.Generic.LinkedList`1" /> 结尾的新 <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
  1003. <exception cref="T:System.ArgumentNullException">
  1004. <paramref name="node" /> 为 null。</exception>
  1005. <exception cref="T:System.InvalidOperationException">
  1006. <paramref name="node" /> 属于另一个 <see cref="T:System.Collections.Generic.LinkedList`1" />。</exception>
  1007. </member>
  1008. <member name="M:System.Collections.Generic.LinkedList`1.AddLast(`0)">
  1009. <summary>在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的结尾处添加包含指定值的新节点。</summary>
  1010. <returns>包含 <paramref name="value" /> 的新 <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</returns>
  1011. <param name="value">要添加到 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的末尾的值。</param>
  1012. </member>
  1013. <member name="M:System.Collections.Generic.LinkedList`1.Clear">
  1014. <summary>从 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中移除所有节点。</summary>
  1015. </member>
  1016. <member name="M:System.Collections.Generic.LinkedList`1.Contains(`0)">
  1017. <summary>确定某值是否在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中。</summary>
  1018. <returns>如果在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中找到 <paramref name="value" />,则为 true;否则为 false。</returns>
  1019. <param name="value">要在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中定位的值。对于引用类型,该值可以为 null。</param>
  1020. </member>
  1021. <member name="M:System.Collections.Generic.LinkedList`1.CopyTo(`0[],System.Int32)">
  1022. <summary>从目标数组的指定索引处开始将整个 <see cref="T:System.Collections.Generic.LinkedList`1" /> 复制到兼容的一维 <see cref="T:System.Array" />。</summary>
  1023. <param name="array">作为从 <see cref="T:System.Collections.Generic.LinkedList`1" /> 复制的元素的目标位置的一维 <see cref="T:System.Array" />。<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  1024. <param name="index">
  1025. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  1026. <exception cref="T:System.ArgumentNullException">
  1027. <paramref name="array" /> 为 null。</exception>
  1028. <exception cref="T:System.ArgumentOutOfRangeException">
  1029. <paramref name="index" /> 小于零。</exception>
  1030. <exception cref="T:System.ArgumentException">源 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中的元素数目大于从 <paramref name="index" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。</exception>
  1031. </member>
  1032. <member name="P:System.Collections.Generic.LinkedList`1.Count">
  1033. <summary>获取 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中实际包含的节点数。</summary>
  1034. <returns>
  1035. <see cref="T:System.Collections.Generic.LinkedList`1" /> 中实际包含的节点数。</returns>
  1036. </member>
  1037. <member name="M:System.Collections.Generic.LinkedList`1.Find(`0)">
  1038. <summary>查找包含指定值的第一个节点。</summary>
  1039. <returns>如果找到,则为包含指定值的第一个 <see cref="T:System.Collections.Generic.LinkedListNode`1" />;否则为 null。</returns>
  1040. <param name="value">要在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中定位的值。</param>
  1041. </member>
  1042. <member name="M:System.Collections.Generic.LinkedList`1.FindLast(`0)">
  1043. <summary>查找包含指定值的最后一个节点。</summary>
  1044. <returns>如果找到,则为包含指定值的最后一个 <see cref="T:System.Collections.Generic.LinkedListNode`1" />;否则为 null。</returns>
  1045. <param name="value">要在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中定位的值。</param>
  1046. </member>
  1047. <member name="P:System.Collections.Generic.LinkedList`1.First">
  1048. <summary>获取 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的第一个节点。</summary>
  1049. <returns>
  1050. <see cref="T:System.Collections.Generic.LinkedList`1" /> 的第一个 <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</returns>
  1051. </member>
  1052. <member name="M:System.Collections.Generic.LinkedList`1.GetEnumerator">
  1053. <summary>返回循环访问 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的枚举数。</summary>
  1054. <returns>用于 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的 <see cref="T:System.Collections.Generic.LinkedList`1.Enumerator" />。</returns>
  1055. </member>
  1056. <member name="P:System.Collections.Generic.LinkedList`1.Last">
  1057. <summary>获取 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的最后一个节点。</summary>
  1058. <returns>
  1059. <see cref="T:System.Collections.Generic.LinkedList`1" /> 的最后一个 <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</returns>
  1060. </member>
  1061. <member name="M:System.Collections.Generic.LinkedList`1.Remove(System.Collections.Generic.LinkedListNode{`0})">
  1062. <summary>从 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中移除指定的节点。</summary>
  1063. <param name="node">要从 <see cref="T:System.Collections.Generic.LinkedList`1" /> 移除的 <see cref="T:System.Collections.Generic.LinkedListNode`1" />。</param>
  1064. <exception cref="T:System.ArgumentNullException">
  1065. <paramref name="node" /> 为 null。</exception>
  1066. <exception cref="T:System.InvalidOperationException">
  1067. <paramref name="node" /> 不在当前 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中。</exception>
  1068. </member>
  1069. <member name="M:System.Collections.Generic.LinkedList`1.Remove(`0)">
  1070. <summary>从 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中移除指定值的第一个匹配项。</summary>
  1071. <returns>如果成功移除包含 <paramref name="value" /> 的元素,则为 true;否则为 false。如果在原始 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中没有找到 <paramref name="value" />,此方法也会返回 false。</returns>
  1072. <param name="value">要从 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中移除的值。</param>
  1073. </member>
  1074. <member name="M:System.Collections.Generic.LinkedList`1.RemoveFirst">
  1075. <summary>移除位于 <see cref="T:System.Collections.Generic.LinkedList`1" /> 开头处的节点。</summary>
  1076. <exception cref="T:System.InvalidOperationException">
  1077. <see cref="T:System.Collections.Generic.LinkedList`1" /> 为空。</exception>
  1078. </member>
  1079. <member name="M:System.Collections.Generic.LinkedList`1.RemoveLast">
  1080. <summary>移除位于 <see cref="T:System.Collections.Generic.LinkedList`1" /> 结尾处的节点。</summary>
  1081. <exception cref="T:System.InvalidOperationException">
  1082. <see cref="T:System.Collections.Generic.LinkedList`1" /> 为空。</exception>
  1083. </member>
  1084. <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#Generic#ICollection{T}#Add(`0)">
  1085. <summary>将项添加到 <see cref="T:System.Collections.Generic.ICollection`1" /> 的结尾处。</summary>
  1086. <param name="value">要在 <see cref="T:System.Collections.Generic.ICollection`1" /> 的结尾处添加的值。</param>
  1087. </member>
  1088. <member name="P:System.Collections.Generic.LinkedList`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
  1089. <summary>获取一个值,该值指示 <see cref="T:System.Collections.Generic.ICollection`1" /> 是否为只读。</summary>
  1090. <returns>如果 <see cref="T:System.Collections.Generic.ICollection`1" /> 为只读,则为 true;否则为 false。在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的默认实现中,此属性始终返回 false。</returns>
  1091. </member>
  1092. <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  1093. <summary>返回一个循环访问集合的枚举器。</summary>
  1094. <returns>可用于循环访问集合的 <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
  1095. </member>
  1096. <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  1097. <summary>从特定的 <see cref="T:System.Array" /> 索引处开始,将 <see cref="T:System.Collections.ICollection" /> 的元素复制到一个 <see cref="T:System.Array" /> 中。</summary>
  1098. <param name="array">作为从 <see cref="T:System.Collections.ICollection" /> 复制的元素的目标的一维 <see cref="T:System.Array" />。<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  1099. <param name="index">
  1100. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  1101. <exception cref="T:System.ArgumentNullException">
  1102. <paramref name="array" /> 为 null。</exception>
  1103. <exception cref="T:System.ArgumentOutOfRangeException">
  1104. <paramref name="index" /> 小于零。</exception>
  1105. <exception cref="T:System.ArgumentException">
  1106. <paramref name="array" /> 是多维的。- 或 -<paramref name="array" /> 没有从零开始的索引。- 或 -源 <see cref="T:System.Collections.ICollection" /> 中的元素数目大于从 <paramref name="index" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。- 或 -源 <see cref="T:System.Collections.ICollection" /> 的类型无法自动转换为目标 <paramref name="array" /> 的类型。</exception>
  1107. </member>
  1108. <member name="P:System.Collections.Generic.LinkedList`1.System#Collections#ICollection#IsSynchronized">
  1109. <summary>获取一个值,该值指示是否同步对 <see cref="T:System.Collections.ICollection" /> 的访问(线程安全)。</summary>
  1110. <returns>如果对 <see cref="T:System.Collections.ICollection" /> 的访问是同步的(线程安全),则为 true;否则为 false。在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的默认实现中,此属性始终返回 false。</returns>
  1111. </member>
  1112. <member name="P:System.Collections.Generic.LinkedList`1.System#Collections#ICollection#SyncRoot">
  1113. <summary>获取可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。</summary>
  1114. <returns>可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。在 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的默认实现中,此属性始终返回当前实例。</returns>
  1115. </member>
  1116. <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#IEnumerable#GetEnumerator">
  1117. <summary>返回一个将链表作为集合进行循环访问的枚举数。</summary>
  1118. <returns>可用于将链表作为集合循环访问的 <see cref="T:System.Collections.IEnumerator" />。</returns>
  1119. </member>
  1120. <member name="T:System.Collections.Generic.LinkedList`1.Enumerator">
  1121. <summary>枚举 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的元素。</summary>
  1122. </member>
  1123. <member name="P:System.Collections.Generic.LinkedList`1.Enumerator.Current">
  1124. <summary>获取枚举数当前位置的元素。</summary>
  1125. <returns>
  1126. <see cref="T:System.Collections.Generic.LinkedList`1" /> 中位于该枚举数当前位置的元素。</returns>
  1127. </member>
  1128. <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.Dispose">
  1129. <summary>释放由 <see cref="T:System.Collections.Generic.LinkedList`1.Enumerator" /> 使用的所有资源。</summary>
  1130. </member>
  1131. <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.MoveNext">
  1132. <summary>使枚举数前进到 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的下一个元素。</summary>
  1133. <returns>如果枚举数成功地推进到下一个元素,则为 true;如果枚举数越过集合的结尾,则为 false。</returns>
  1134. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  1135. </member>
  1136. <member name="P:System.Collections.Generic.LinkedList`1.Enumerator.System#Collections#IEnumerator#Current">
  1137. <summary>获取枚举数当前位置的元素。</summary>
  1138. <returns>集合中位于枚举数当前位置的元素。</returns>
  1139. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  1140. </member>
  1141. <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.System#Collections#IEnumerator#Reset">
  1142. <summary>将枚举数设置为其初始位置,该位置位于集合中第一个元素之前。此类不能被继承。</summary>
  1143. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  1144. </member>
  1145. <member name="T:System.Collections.Generic.LinkedListNode`1">
  1146. <summary>表示 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中的节点。此类不能被继承。</summary>
  1147. <typeparam name="T">指定链表的元素类型。</typeparam>
  1148. <filterpriority>1</filterpriority>
  1149. </member>
  1150. <member name="M:System.Collections.Generic.LinkedListNode`1.#ctor(`0)">
  1151. <summary>初始化 <see cref="T:System.Collections.Generic.LinkedListNode`1" /> 类的新实例,该实例包含指定的值。</summary>
  1152. <param name="value">要在 <see cref="T:System.Collections.Generic.LinkedListNode`1" /> 中包含的值。</param>
  1153. </member>
  1154. <member name="P:System.Collections.Generic.LinkedListNode`1.List">
  1155. <summary>获取 <see cref="T:System.Collections.Generic.LinkedListNode`1" /> 所属的 <see cref="T:System.Collections.Generic.LinkedList`1" />。</summary>
  1156. <returns>对 <see cref="T:System.Collections.Generic.LinkedListNode`1" /> 所属的 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的引用;或者如果 <see cref="T:System.Collections.Generic.LinkedListNode`1" /> 未链接,则为 null。</returns>
  1157. </member>
  1158. <member name="P:System.Collections.Generic.LinkedListNode`1.Next">
  1159. <summary>获取 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中的下一个节点。</summary>
  1160. <returns>对 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中的下一个节点的引用;或者如果当前节点是 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的最后一个元素 (<see cref="P:System.Collections.Generic.LinkedList`1.Last" />),则为 null。</returns>
  1161. </member>
  1162. <member name="P:System.Collections.Generic.LinkedListNode`1.Previous">
  1163. <summary>获取 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中的上一个节点。</summary>
  1164. <returns>对 <see cref="T:System.Collections.Generic.LinkedList`1" /> 中的上一个节点的引用;或者如果当前节点是 <see cref="T:System.Collections.Generic.LinkedList`1" /> 的第一个元素 (<see cref="P:System.Collections.Generic.LinkedList`1.First" />),则为 null。</returns>
  1165. </member>
  1166. <member name="P:System.Collections.Generic.LinkedListNode`1.Value">
  1167. <summary>获取节点中包含的值。</summary>
  1168. <returns>节点中包含的值。</returns>
  1169. </member>
  1170. <member name="T:System.Collections.Generic.List`1">
  1171. <summary>表示可通过索引访问的对象的强类型列表。提供用于对列表进行搜索、排序和操作的方法。若要浏览此类型的.NET Framework 源代码,请参阅参考源。</summary>
  1172. <typeparam name="T">列表中元素的类型。</typeparam>
  1173. <filterpriority>1</filterpriority>
  1174. </member>
  1175. <member name="M:System.Collections.Generic.List`1.#ctor">
  1176. <summary>初始化 <see cref="T:System.Collections.Generic.List`1" /> 类的新实例,该实例为空并且具有默认初始容量。</summary>
  1177. </member>
  1178. <member name="M:System.Collections.Generic.List`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
  1179. <summary>初始化 <see cref="T:System.Collections.Generic.List`1" /> 类的新实例,该实例包含从指定集合复制的元素并且具有足够的容量来容纳所复制的元素。</summary>
  1180. <param name="collection">一个集合,其元素被复制到新列表中。</param>
  1181. <exception cref="T:System.ArgumentNullException">
  1182. <paramref name="collection" /> 为 null。</exception>
  1183. </member>
  1184. <member name="M:System.Collections.Generic.List`1.#ctor(System.Int32)">
  1185. <summary>初始化 <see cref="T:System.Collections.Generic.List`1" /> 类的新实例,该实例为空并且具有指定的初始容量。</summary>
  1186. <param name="capacity">新列表最初可以存储的元素数。</param>
  1187. <exception cref="T:System.ArgumentOutOfRangeException">
  1188. <paramref name="capacity" /> 小于 0。</exception>
  1189. </member>
  1190. <member name="M:System.Collections.Generic.List`1.Add(`0)">
  1191. <summary>将对象添加到 <see cref="T:System.Collections.Generic.List`1" /> 的结尾处。</summary>
  1192. <param name="item">要添加到 <see cref="T:System.Collections.Generic.List`1" /> 的末尾处的对象。对于引用类型,该值可以为 null。</param>
  1193. </member>
  1194. <member name="M:System.Collections.Generic.List`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
  1195. <summary>将指定集合的元素添加到 <see cref="T:System.Collections.Generic.List`1" /> 的末尾。</summary>
  1196. <param name="collection">一个集合,其元素应被添加到 <see cref="T:System.Collections.Generic.List`1" /> 的末尾。集合自身不能为 null,但它可以包含为 null 的元素(如果类型 <paramref name="T" /> 为引用类型)。</param>
  1197. <exception cref="T:System.ArgumentNullException">
  1198. <paramref name="collection" /> 为 null。</exception>
  1199. </member>
  1200. <member name="M:System.Collections.Generic.List`1.AsReadOnly">
  1201. <summary>返回当前集合的只读 <see cref="T:System.Collections.Generic.IList`1" /> 包装。</summary>
  1202. <returns>作为当前 <see cref="T:System.Collections.Generic.List`1" /> 周围的只读包装的 <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />。</returns>
  1203. </member>
  1204. <member name="M:System.Collections.Generic.List`1.BinarySearch(System.Int32,System.Int32,`0,System.Collections.Generic.IComparer{`0})">
  1205. <summary>使用指定的比较器在已排序 <see cref="T:System.Collections.Generic.List`1" /> 的某个元素范围中搜索元素,并返回该元素从零开始的索引。</summary>
  1206. <returns>如果找到 <paramref name="item" />,则为已排序的 <see cref="T:System.Collections.Generic.List`1" /> 中 <paramref name="item" /> 的从零开始的索引;否则为一个负数,该负数是大于 <paramref name="item" /> 的第一个元素的索引的按位求补。如果没有更大的元素,则为 <see cref="P:System.Collections.Generic.List`1.Count" /> 的按位求补。</returns>
  1207. <param name="index">要搜索范围的从零开始的起始索引。</param>
  1208. <param name="count">要搜索的范围的长度。</param>
  1209. <param name="item">要定位的对象。对于引用类型,该值可以为 null。</param>
  1210. <param name="comparer">比较元素时要使用的 <see cref="T:System.Collections.Generic.IComparer`1" /> 实现,或者为 null,表示使用默认比较器 <see cref="P:System.Collections.Generic.Comparer`1.Default" />。</param>
  1211. <exception cref="T:System.ArgumentOutOfRangeException">
  1212. <paramref name="index" /> 小于 0。- 或 -<paramref name="count" /> 小于 0。 </exception>
  1213. <exception cref="T:System.ArgumentException">
  1214. <paramref name="index" /> 和 <paramref name="count" /> 不表示 <see cref="T:System.Collections.Generic.List`1" /> 中的有效范围。</exception>
  1215. <exception cref="T:System.InvalidOperationException">
  1216. <paramref name="comparer" /> 为 null,且默认比较器 <see cref="P:System.Collections.Generic.Comparer`1.Default" /> 找不到 <paramref name="T" /> 类型的 <see cref="T:System.IComparable`1" /> 泛型接口或 <see cref="T:System.IComparable" /> 接口的实现。</exception>
  1217. </member>
  1218. <member name="M:System.Collections.Generic.List`1.BinarySearch(`0)">
  1219. <summary>使用默认的比较器在整个已排序的 <see cref="T:System.Collections.Generic.List`1" /> 中搜索元素,并返回该元素从零开始的索引。</summary>
  1220. <returns>如果找到 <paramref name="item" />,则为已排序的 <see cref="T:System.Collections.Generic.List`1" /> 中 <paramref name="item" /> 的从零开始的索引;否则为一个负数,该负数是大于 <paramref name="item" /> 的第一个元素的索引的按位求补。如果没有更大的元素,则为 <see cref="P:System.Collections.Generic.List`1.Count" /> 的按位求补。</returns>
  1221. <param name="item">要定位的对象。对于引用类型,该值可以为 null。</param>
  1222. <exception cref="T:System.InvalidOperationException">默认比较器 <see cref="P:System.Collections.Generic.Comparer`1.Default" /> 找不到 <paramref name="T" /> 类型的 <see cref="T:System.IComparable`1" /> 泛型接口或 <see cref="T:System.IComparable" /> 接口的实现。</exception>
  1223. </member>
  1224. <member name="M:System.Collections.Generic.List`1.BinarySearch(`0,System.Collections.Generic.IComparer{`0})">
  1225. <summary>使用指定的比较器在整个已排序的 <see cref="T:System.Collections.Generic.List`1" /> 中搜索元素,并返回该元素从零开始的索引。</summary>
  1226. <returns>如果找到 <paramref name="item" />,则为已排序的 <see cref="T:System.Collections.Generic.List`1" /> 中 <paramref name="item" /> 的从零开始的索引;否则为一个负数,该负数是大于 <paramref name="item" /> 的第一个元素的索引的按位求补。如果没有更大的元素,则为 <see cref="P:System.Collections.Generic.List`1.Count" /> 的按位求补。</returns>
  1227. <param name="item">要定位的对象。对于引用类型,该值可以为 null。</param>
  1228. <param name="comparer">比较元素时要使用的 <see cref="T:System.Collections.Generic.IComparer`1" /> 实现。- 或 -为 null 以使用默认比较器 <see cref="P:System.Collections.Generic.Comparer`1.Default" />。</param>
  1229. <exception cref="T:System.InvalidOperationException">
  1230. <paramref name="comparer" /> 为 null,且默认比较器 <see cref="P:System.Collections.Generic.Comparer`1.Default" /> 找不到 <paramref name="T" /> 类型的 <see cref="T:System.IComparable`1" /> 泛型接口或 <see cref="T:System.IComparable" /> 接口的实现。</exception>
  1231. </member>
  1232. <member name="P:System.Collections.Generic.List`1.Capacity">
  1233. <summary>获取或设置该内部数据结构在不调整大小的情况下能够容纳的元素总数。</summary>
  1234. <returns>在需要调整大小之前 <see cref="T:System.Collections.Generic.List`1" /> 能够容纳的元素的数目。</returns>
  1235. <exception cref="T:System.ArgumentOutOfRangeException">
  1236. <see cref="P:System.Collections.Generic.List`1.Capacity" /> 设置为小于 <see cref="P:System.Collections.Generic.List`1.Count" /> 的值。</exception>
  1237. <exception cref="T:System.OutOfMemoryException">系统中没有足够的可用内存。</exception>
  1238. </member>
  1239. <member name="M:System.Collections.Generic.List`1.Clear">
  1240. <summary>从 <see cref="T:System.Collections.Generic.List`1" /> 中移除所有元素。</summary>
  1241. </member>
  1242. <member name="M:System.Collections.Generic.List`1.Contains(`0)">
  1243. <summary>确定某元素是否在 <see cref="T:System.Collections.Generic.List`1" /> 中。</summary>
  1244. <returns>true if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.List`1" />; otherwise, false.</returns>
  1245. <param name="item">要在 <see cref="T:System.Collections.Generic.List`1" /> 中定位的对象。对于引用类型,该值可以为 null。</param>
  1246. </member>
  1247. <member name="M:System.Collections.Generic.List`1.CopyTo(System.Int32,`0[],System.Int32,System.Int32)">
  1248. <summary>将一定范围的元素从 <see cref="T:System.Collections.Generic.List`1" /> 复制到兼容的一维数组中,从目标数组的指定索引位置开始放置。</summary>
  1249. <param name="index">源 <see cref="T:System.Collections.Generic.List`1" /> 中复制开始位置的从零开始的索引。</param>
  1250. <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.List`1" />.<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  1251. <param name="arrayIndex">
  1252. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  1253. <param name="count">要复制的元素数。</param>
  1254. <exception cref="T:System.ArgumentNullException">
  1255. <paramref name="array" /> 为 null。 </exception>
  1256. <exception cref="T:System.ArgumentOutOfRangeException">
  1257. <paramref name="index" /> 小于 0。- 或 -<paramref name="arrayIndex" /> 小于 0。- 或 -<paramref name="count" /> 小于 0。 </exception>
  1258. <exception cref="T:System.ArgumentException">
  1259. <paramref name="index" /> 等于或大于源 <see cref="T:System.Collections.Generic.List`1" /> 的 <see cref="P:System.Collections.Generic.List`1.Count" />。- 或 -从 <paramref name="index" /> 到源 <see cref="T:System.Collections.Generic.List`1" /> 的末尾的元素数大于从 <paramref name="arrayIndex" /> 到目标 <paramref name="array" /> 的末尾的可用空间。</exception>
  1260. </member>
  1261. <member name="M:System.Collections.Generic.List`1.CopyTo(`0[])">
  1262. <summary>将整个 <see cref="T:System.Collections.Generic.List`1" /> 复制到兼容的一维数组中,从目标数组的开头开始放置。</summary>
  1263. <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.List`1" />.<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  1264. <exception cref="T:System.ArgumentNullException">
  1265. <paramref name="array" /> 为 null。</exception>
  1266. <exception cref="T:System.ArgumentException">源 <see cref="T:System.Collections.Generic.List`1" /> 中的元素数大于目标 <paramref name="array" /> 可包含的元素数。</exception>
  1267. </member>
  1268. <member name="M:System.Collections.Generic.List`1.CopyTo(`0[],System.Int32)">
  1269. <summary>将整个 <see cref="T:System.Collections.Generic.List`1" /> 复制到兼容的一维数组中,从目标数组的指定索引位置开始放置。</summary>
  1270. <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.List`1" />.<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  1271. <param name="arrayIndex">
  1272. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  1273. <exception cref="T:System.ArgumentNullException">
  1274. <paramref name="array" /> 为 null。</exception>
  1275. <exception cref="T:System.ArgumentOutOfRangeException">
  1276. <paramref name="arrayIndex" /> 小于 0。</exception>
  1277. <exception cref="T:System.ArgumentException">源 <see cref="T:System.Collections.Generic.List`1" /> 中的元素数目大于从 <paramref name="arrayIndex" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。</exception>
  1278. </member>
  1279. <member name="P:System.Collections.Generic.List`1.Count">
  1280. <summary>获取 <see cref="T:System.Collections.Generic.List`1" /> 中包含的元素数。</summary>
  1281. <returns>
  1282. <see cref="T:System.Collections.Generic.List`1" /> 中包含的元素个数。</returns>
  1283. </member>
  1284. <member name="M:System.Collections.Generic.List`1.Exists(System.Predicate{`0})">
  1285. <summary>确定 <see cref="T:System.Collections.Generic.List`1" /> 是否包含与指定谓词所定义的条件相匹配的元素。</summary>
  1286. <returns>如果 <see cref="T:System.Collections.Generic.List`1" /> 包含一个或多个与指定谓词所定义的条件相匹配的元素,则为 true;否则为 false。</returns>
  1287. <param name="match">
  1288. <see cref="T:System.Predicate`1" /> 委托,用于定义要搜索的元素应满足的条件。</param>
  1289. <exception cref="T:System.ArgumentNullException">
  1290. <paramref name="match" /> 为 null。</exception>
  1291. </member>
  1292. <member name="M:System.Collections.Generic.List`1.Find(System.Predicate{`0})">
  1293. <summary>搜索与指定谓词所定义的条件相匹配的元素,并返回整个 <see cref="T:System.Collections.Generic.List`1" /> 中的第一个匹配元素。</summary>
  1294. <returns>如果找到与指定谓词定义的条件匹配的第一个元素,则为该元素;否则为类型 <paramref name="T" /> 的默认值。</returns>
  1295. <param name="match">
  1296. <see cref="T:System.Predicate`1" /> 委托,用于定义要搜索的元素的条件。</param>
  1297. <exception cref="T:System.ArgumentNullException">
  1298. <paramref name="match" /> 为 null。</exception>
  1299. </member>
  1300. <member name="M:System.Collections.Generic.List`1.FindAll(System.Predicate{`0})">
  1301. <summary>检索与指定谓词定义的条件匹配的所有元素。</summary>
  1302. <returns>如果找到,则为一个 <see cref="T:System.Collections.Generic.List`1" />,其中包含与指定谓词所定义的条件相匹配的所有元素;否则为一个空 <see cref="T:System.Collections.Generic.List`1" />。</returns>
  1303. <param name="match">
  1304. <see cref="T:System.Predicate`1" /> 委托,用于定义要搜索的元素应满足的条件。</param>
  1305. <exception cref="T:System.ArgumentNullException">
  1306. <paramref name="match" /> 为 null。</exception>
  1307. </member>
  1308. <member name="M:System.Collections.Generic.List`1.FindIndex(System.Int32,System.Int32,System.Predicate{`0})">
  1309. <summary>搜索与指定谓词所定义的条件相匹配的一个元素,并返回 <see cref="T:System.Collections.Generic.List`1" /> 中从指定的索引开始、包含指定元素个数的元素范围内第一个匹配项的从零开始的索引。</summary>
  1310. <returns>如果找到与 <paramref name="match" /> 定义的条件相匹配的第一个元素,则为该元素的从零开始的索引;否则为 -1。</returns>
  1311. <param name="startIndex">从零开始的搜索的起始索引。</param>
  1312. <param name="count">要搜索的部分中的元素数。</param>
  1313. <param name="match">
  1314. <see cref="T:System.Predicate`1" /> 委托,用于定义要搜索的元素的条件。</param>
  1315. <exception cref="T:System.ArgumentNullException">
  1316. <paramref name="match" /> 为 null。</exception>
  1317. <exception cref="T:System.ArgumentOutOfRangeException">
  1318. <paramref name="startIndex" /> 不在 <see cref="T:System.Collections.Generic.List`1" /> 的有效索引范围内。- 或 -<paramref name="count" /> 小于 0。- 或 -<paramref name="startIndex" /> 和 <paramref name="count" /> 未指定 <see cref="T:System.Collections.Generic.List`1" /> 中的有效部分。</exception>
  1319. </member>
  1320. <member name="M:System.Collections.Generic.List`1.FindIndex(System.Int32,System.Predicate{`0})">
  1321. <summary>搜索与指定谓词所定义的条件相匹配的元素,并返回 <see cref="T:System.Collections.Generic.List`1" /> 中从指定索引到最后一个元素的元素范围内第一个匹配项的从零开始的索引。</summary>
  1322. <returns>如果找到与 <paramref name="match" /> 定义的条件相匹配的第一个元素,则为该元素的从零开始的索引;否则为 -1。</returns>
  1323. <param name="startIndex">从零开始的搜索的起始索引。</param>
  1324. <param name="match">
  1325. <see cref="T:System.Predicate`1" /> 委托,用于定义要搜索的元素的条件。</param>
  1326. <exception cref="T:System.ArgumentNullException">
  1327. <paramref name="match" /> 为 null。</exception>
  1328. <exception cref="T:System.ArgumentOutOfRangeException">
  1329. <paramref name="startIndex" /> 不在 <see cref="T:System.Collections.Generic.List`1" /> 的有效索引范围内。</exception>
  1330. </member>
  1331. <member name="M:System.Collections.Generic.List`1.FindIndex(System.Predicate{`0})">
  1332. <summary>搜索与指定谓词所定义的条件相匹配的元素,并返回整个 <see cref="T:System.Collections.Generic.List`1" /> 中第一个匹配元素的从零开始的索引。</summary>
  1333. <returns>如果找到与 <paramref name="match" /> 定义的条件相匹配的第一个元素,则为该元素的从零开始的索引;否则为 -1。</returns>
  1334. <param name="match">
  1335. <see cref="T:System.Predicate`1" /> 委托,用于定义要搜索的元素的条件。</param>
  1336. <exception cref="T:System.ArgumentNullException">
  1337. <paramref name="match" /> 为 null。</exception>
  1338. </member>
  1339. <member name="M:System.Collections.Generic.List`1.FindLast(System.Predicate{`0})">
  1340. <summary>搜索与指定谓词所定义的条件相匹配的元素,并返回整个 <see cref="T:System.Collections.Generic.List`1" /> 中的最后一个匹配元素。</summary>
  1341. <returns>如果找到,则为与指定谓词所定义的条件相匹配的最后一个元素;否则为类型 <paramref name="T" /> 的默认值。</returns>
  1342. <param name="match">
  1343. <see cref="T:System.Predicate`1" /> 委托,用于定义要搜索的元素的条件。</param>
  1344. <exception cref="T:System.ArgumentNullException">
  1345. <paramref name="match" /> 为 null。</exception>
  1346. </member>
  1347. <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Int32,System.Int32,System.Predicate{`0})">
  1348. <summary>搜索与指定谓词所定义的条件相匹配的元素,并返回 <see cref="T:System.Collections.Generic.List`1" /> 中包含指定元素个数、到指定索引结束的元素范围内最后一个匹配项的从零开始的索引。</summary>
  1349. <returns>如果找到与 <paramref name="match" /> 定义的条件相匹配的最后一个元素,则为该元素的从零开始的索引;否则为 -1。</returns>
  1350. <param name="startIndex">向后搜索的从零开始的起始索引。</param>
  1351. <param name="count">要搜索的部分中的元素数。</param>
  1352. <param name="match">
  1353. <see cref="T:System.Predicate`1" /> 委托,用于定义要搜索的元素的条件。</param>
  1354. <exception cref="T:System.ArgumentNullException">
  1355. <paramref name="match" /> 为 null。</exception>
  1356. <exception cref="T:System.ArgumentOutOfRangeException">
  1357. <paramref name="startIndex" /> 不在 <see cref="T:System.Collections.Generic.List`1" /> 的有效索引范围内。- 或 -<paramref name="count" /> 小于 0。- 或 -<paramref name="startIndex" /> 和 <paramref name="count" /> 未指定 <see cref="T:System.Collections.Generic.List`1" /> 中的有效部分。</exception>
  1358. </member>
  1359. <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Int32,System.Predicate{`0})">
  1360. <summary>搜索与由指定谓词定义的条件相匹配的元素,并返回 <see cref="T:System.Collections.Generic.List`1" /> 中从第一个元素到指定索引的元素范围内最后一个匹配项的从零开始的索引。</summary>
  1361. <returns>如果找到与 <paramref name="match" /> 定义的条件相匹配的最后一个元素,则为该元素的从零开始的索引;否则为 -1。</returns>
  1362. <param name="startIndex">向后搜索的从零开始的起始索引。</param>
  1363. <param name="match">
  1364. <see cref="T:System.Predicate`1" /> 委托,用于定义要搜索的元素的条件。</param>
  1365. <exception cref="T:System.ArgumentNullException">
  1366. <paramref name="match" /> 为 null。</exception>
  1367. <exception cref="T:System.ArgumentOutOfRangeException">
  1368. <paramref name="startIndex" /> 不在 <see cref="T:System.Collections.Generic.List`1" /> 的有效索引范围内。</exception>
  1369. </member>
  1370. <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Predicate{`0})">
  1371. <summary>搜索与指定谓词所定义的条件相匹配的元素,并返回整个 <see cref="T:System.Collections.Generic.List`1" /> 中最后一个匹配元素的从零开始的索引。</summary>
  1372. <returns>如果找到与 <paramref name="match" /> 定义的条件相匹配的最后一个元素,则为该元素的从零开始的索引;否则为 -1。</returns>
  1373. <param name="match">
  1374. <see cref="T:System.Predicate`1" /> 委托,用于定义要搜索的元素的条件。</param>
  1375. <exception cref="T:System.ArgumentNullException">
  1376. <paramref name="match" /> 为 null。</exception>
  1377. </member>
  1378. <member name="M:System.Collections.Generic.List`1.ForEach(System.Action{`0})">
  1379. <summary>对 <see cref="T:System.Collections.Generic.List`1" /> 的每个元素执行指定操作。</summary>
  1380. <param name="action">要对 <see cref="T:System.Collections.Generic.List`1" /> 的每个元素执行的 <see cref="T:System.Action`1" /> 委托。</param>
  1381. <exception cref="T:System.ArgumentNullException">
  1382. <paramref name="action" /> 为 null。</exception>
  1383. </member>
  1384. <member name="M:System.Collections.Generic.List`1.GetEnumerator">
  1385. <summary>返回循环访问 <see cref="T:System.Collections.Generic.List`1" /> 的枚举数。</summary>
  1386. <returns>用于 <see cref="T:System.Collections.Generic.List`1" /> 的 <see cref="T:System.Collections.Generic.List`1.Enumerator" />。</returns>
  1387. </member>
  1388. <member name="M:System.Collections.Generic.List`1.GetRange(System.Int32,System.Int32)">
  1389. <summary>创建源 <see cref="T:System.Collections.Generic.List`1" /> 中的元素范围的浅表副本。</summary>
  1390. <returns>源 <see cref="T:System.Collections.Generic.List`1" /> 中的元素范围的浅表副本。</returns>
  1391. <param name="index">范围开始处的从零开始的 <see cref="T:System.Collections.Generic.List`1" /> 索引。</param>
  1392. <param name="count">范围中的元素数。</param>
  1393. <exception cref="T:System.ArgumentOutOfRangeException">
  1394. <paramref name="index" /> 小于 0。- 或 -<paramref name="count" /> 小于 0。</exception>
  1395. <exception cref="T:System.ArgumentException">
  1396. <paramref name="index" /> 和 <paramref name="count" /> 不表示 <see cref="T:System.Collections.Generic.List`1" /> 中元素的有效范围。</exception>
  1397. </member>
  1398. <member name="M:System.Collections.Generic.List`1.IndexOf(`0)">
  1399. <summary>搜索指定的对象,并返回整个 <see cref="T:System.Collections.Generic.List`1" /> 中第一个匹配项的从零开始的索引。</summary>
  1400. <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>
  1401. <param name="item">要在 <see cref="T:System.Collections.Generic.List`1" /> 中定位的对象。对于引用类型,该值可以为 null。</param>
  1402. </member>
  1403. <member name="M:System.Collections.Generic.List`1.IndexOf(`0,System.Int32)">
  1404. <summary>搜索指定的对象,并返回 <see cref="T:System.Collections.Generic.List`1" /> 中从指定索引到最后一个元素的元素范围内第一个匹配项的从零开始的索引。</summary>
  1405. <returns>如果在 <see cref="T:System.Collections.Generic.List`1" /> 中从 <paramref name="index" /> 到最后一个元素的元素范围内找到 <paramref name="item" /> 的第一个匹配项,则为该项的从零开始的索引;否则为 -1。</returns>
  1406. <param name="item">要在 <see cref="T:System.Collections.Generic.List`1" /> 中定位的对象。对于引用类型,该值可以为 null。</param>
  1407. <param name="index">从零开始的搜索的起始索引。空列表中 0(零)为有效值。</param>
  1408. <exception cref="T:System.ArgumentOutOfRangeException">
  1409. <paramref name="index" /> 不在 <see cref="T:System.Collections.Generic.List`1" /> 的有效索引范围内。</exception>
  1410. </member>
  1411. <member name="M:System.Collections.Generic.List`1.IndexOf(`0,System.Int32,System.Int32)">
  1412. <summary>搜索指定的对象,并返回 <see cref="T:System.Collections.Generic.List`1" /> 中从指定的索引开始并包含指定的元素数的元素范围内第一个匹配项的从零开始的索引。</summary>
  1413. <returns>如果在 <see cref="T:System.Collections.Generic.List`1" /> 中从 <paramref name="index" /> 开始并包含 <paramref name="count" /> 个元素的元素范围内找到 <paramref name="item" /> 的第一个匹配项,则为该项的从零开始的索引;否则为 -1。</returns>
  1414. <param name="item">要在 <see cref="T:System.Collections.Generic.List`1" /> 中定位的对象。对于引用类型,该值可以为 null。</param>
  1415. <param name="index">从零开始的搜索的起始索引。空列表中 0(零)为有效值。</param>
  1416. <param name="count">要搜索的部分中的元素数。</param>
  1417. <exception cref="T:System.ArgumentOutOfRangeException">
  1418. <paramref name="index" /> 不在 <see cref="T:System.Collections.Generic.List`1" /> 的有效索引范围内。- 或 -<paramref name="count" /> 小于 0。- 或 -<paramref name="index" /> 和 <paramref name="count" /> 未指定 <see cref="T:System.Collections.Generic.List`1" /> 中的有效部分。</exception>
  1419. </member>
  1420. <member name="M:System.Collections.Generic.List`1.Insert(System.Int32,`0)">
  1421. <summary>将元素插入 <see cref="T:System.Collections.Generic.List`1" /> 的指定索引处。</summary>
  1422. <param name="index">从零开始的索引,应在该位置插入 <paramref name="item" />。</param>
  1423. <param name="item">要插入的对象。对于引用类型,该值可以为 null。</param>
  1424. <exception cref="T:System.ArgumentOutOfRangeException">
  1425. <paramref name="index" /> 小于 0。- 或 -<paramref name="index" /> 大于 <see cref="P:System.Collections.Generic.List`1.Count" />。</exception>
  1426. </member>
  1427. <member name="M:System.Collections.Generic.List`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0})">
  1428. <summary>将集合中的某个元素插入 <see cref="T:System.Collections.Generic.List`1" /> 的指定索引处。</summary>
  1429. <param name="index">应在此处插入新元素的从零开始的索引。</param>
  1430. <param name="collection">一个集合,应将其元素插入到 <see cref="T:System.Collections.Generic.List`1" /> 中。集合自身不能为 null,但它可以包含为 null 的元素(如果类型 <paramref name="T" /> 为引用类型)。</param>
  1431. <exception cref="T:System.ArgumentNullException">
  1432. <paramref name="collection" /> 为 null。</exception>
  1433. <exception cref="T:System.ArgumentOutOfRangeException">
  1434. <paramref name="index" /> 小于 0。- 或 -<paramref name="index" /> 大于 <see cref="P:System.Collections.Generic.List`1.Count" />。</exception>
  1435. </member>
  1436. <member name="P:System.Collections.Generic.List`1.Item(System.Int32)">
  1437. <summary>获取或设置指定索引处的元素。</summary>
  1438. <returns>指定索引处的元素。</returns>
  1439. <param name="index">要获取或设置的元素的从零开始的索引。</param>
  1440. <exception cref="T:System.ArgumentOutOfRangeException">
  1441. <paramref name="index" /> 小于 0。- 或 -<paramref name="index" /> 等于或大于 <see cref="P:System.Collections.Generic.List`1.Count" />。 </exception>
  1442. </member>
  1443. <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0)">
  1444. <summary>搜索指定的对象,并返回整个 <see cref="T:System.Collections.Generic.List`1" /> 中最后一个匹配项的从零开始的索引。</summary>
  1445. <returns>如果在整个 <see cref="T:System.Collections.Generic.List`1" /> 中找到 <paramref name="item" /> 的最后一个匹配项,则为该项的从零开始的索引;否则为 -1。</returns>
  1446. <param name="item">要在 <see cref="T:System.Collections.Generic.List`1" /> 中定位的对象。对于引用类型,该值可以为 null。</param>
  1447. </member>
  1448. <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0,System.Int32)">
  1449. <summary>搜索指定的对象,并返回 <see cref="T:System.Collections.Generic.List`1" /> 中从第一个元素到指定索引的元素范围内最后一个匹配项的从零开始的索引。</summary>
  1450. <returns>如果在 <see cref="T:System.Collections.Generic.List`1" /> 中从第一个元素到 <paramref name="index" /> 的元素范围内找到 <paramref name="item" /> 的最后一个匹配项,则为该项的从零开始的索引;否则为 -1。</returns>
  1451. <param name="item">要在 <see cref="T:System.Collections.Generic.List`1" /> 中定位的对象。对于引用类型,该值可以为 null。</param>
  1452. <param name="index">向后搜索的从零开始的起始索引。</param>
  1453. <exception cref="T:System.ArgumentOutOfRangeException">
  1454. <paramref name="index" /> 不在 <see cref="T:System.Collections.Generic.List`1" /> 的有效索引范围内。</exception>
  1455. </member>
  1456. <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0,System.Int32,System.Int32)">
  1457. <summary>搜索指定的对象,并返回 <see cref="T:System.Collections.Generic.List`1" /> 中包含指定的元素数并在指定索引处结束的元素范围内最后一个匹配项的从零开始的索引。</summary>
  1458. <returns>如果在 <see cref="T:System.Collections.Generic.List`1" /> 中包含 <paramref name="count" /> 个元素、在 <paramref name="index" /> 处结尾的元素范围内找到 <paramref name="item" /> 的最后一个匹配项,则为该项的从零开始的索引;否则为 -1。</returns>
  1459. <param name="item">要在 <see cref="T:System.Collections.Generic.List`1" /> 中定位的对象。对于引用类型,该值可以为 null。</param>
  1460. <param name="index">向后搜索的从零开始的起始索引。</param>
  1461. <param name="count">要搜索的部分中的元素数。</param>
  1462. <exception cref="T:System.ArgumentOutOfRangeException">
  1463. <paramref name="index" /> 不在 <see cref="T:System.Collections.Generic.List`1" /> 的有效索引范围内。- 或 -<paramref name="count" /> 小于 0。- 或 -<paramref name="index" /> 和 <paramref name="count" /> 未指定 <see cref="T:System.Collections.Generic.List`1" /> 中的有效部分。</exception>
  1464. </member>
  1465. <member name="M:System.Collections.Generic.List`1.Remove(`0)">
  1466. <summary>从 <see cref="T:System.Collections.Generic.List`1" /> 中移除特定对象的第一个匹配项。</summary>
  1467. <returns>如果成功移除 <paramref name="item" />,则为 true;否则为 false。This method also returns false if <paramref name="item" /> was not found in the <see cref="T:System.Collections.Generic.List`1" />.</returns>
  1468. <param name="item">要从 <see cref="T:System.Collections.Generic.List`1" /> 中移除的对象。对于引用类型,该值可以为 null。</param>
  1469. </member>
  1470. <member name="M:System.Collections.Generic.List`1.RemoveAll(System.Predicate{`0})">
  1471. <summary>移除与指定的谓词所定义的条件相匹配的所有元素。</summary>
  1472. <returns>从 <see cref="T:System.Collections.Generic.List`1" /> 中移除的元素的数目。</returns>
  1473. <param name="match">
  1474. <see cref="T:System.Predicate`1" /> 委托,用于定义要移除的元素应满足的条件。</param>
  1475. <exception cref="T:System.ArgumentNullException">
  1476. <paramref name="match" /> 为 null。</exception>
  1477. </member>
  1478. <member name="M:System.Collections.Generic.List`1.RemoveAt(System.Int32)">
  1479. <summary>移除 <see cref="T:System.Collections.Generic.List`1" /> 的指定索引处的元素。</summary>
  1480. <param name="index">要移除的元素的从零开始的索引。</param>
  1481. <exception cref="T:System.ArgumentOutOfRangeException">
  1482. <paramref name="index" /> 小于 0。- 或 -<paramref name="index" /> 等于或大于 <see cref="P:System.Collections.Generic.List`1.Count" />。</exception>
  1483. </member>
  1484. <member name="M:System.Collections.Generic.List`1.RemoveRange(System.Int32,System.Int32)">
  1485. <summary>从 <see cref="T:System.Collections.Generic.List`1" /> 中移除一定范围的元素。</summary>
  1486. <param name="index">要移除的元素范围的从零开始的起始索引。</param>
  1487. <param name="count">要移除的元素数。</param>
  1488. <exception cref="T:System.ArgumentOutOfRangeException">
  1489. <paramref name="index" /> 小于 0。- 或 -<paramref name="count" /> 小于 0。</exception>
  1490. <exception cref="T:System.ArgumentException">
  1491. <paramref name="index" /> 和 <paramref name="count" /> 不表示 <see cref="T:System.Collections.Generic.List`1" /> 中元素的有效范围。</exception>
  1492. </member>
  1493. <member name="M:System.Collections.Generic.List`1.Reverse">
  1494. <summary>将整个 <see cref="T:System.Collections.Generic.List`1" /> 中元素的顺序反转。</summary>
  1495. </member>
  1496. <member name="M:System.Collections.Generic.List`1.Reverse(System.Int32,System.Int32)">
  1497. <summary>将指定范围中元素的顺序反转。</summary>
  1498. <param name="index">要反转的范围的从零开始的起始索引。</param>
  1499. <param name="count">要反转的范围内的元素数。</param>
  1500. <exception cref="T:System.ArgumentOutOfRangeException">
  1501. <paramref name="index" /> 小于 0。- 或 -<paramref name="count" /> 小于 0。 </exception>
  1502. <exception cref="T:System.ArgumentException">
  1503. <paramref name="index" /> 和 <paramref name="count" /> 不表示 <see cref="T:System.Collections.Generic.List`1" /> 中元素的有效范围。</exception>
  1504. </member>
  1505. <member name="M:System.Collections.Generic.List`1.Sort">
  1506. <summary>使用默认比较器对整个 <see cref="T:System.Collections.Generic.List`1" /> 中的元素进行排序。</summary>
  1507. <exception cref="T:System.InvalidOperationException">默认比较器 <see cref="P:System.Collections.Generic.Comparer`1.Default" /> 找不到 <paramref name="T" /> 类型的 <see cref="T:System.IComparable`1" /> 泛型接口或 <see cref="T:System.IComparable" /> 接口的实现。</exception>
  1508. </member>
  1509. <member name="M:System.Collections.Generic.List`1.Sort(System.Collections.Generic.IComparer{`0})">
  1510. <summary>使用指定的比较器对整个 <see cref="T:System.Collections.Generic.List`1" /> 中的元素进行排序。</summary>
  1511. <param name="comparer">比较元素时要使用的 <see cref="T:System.Collections.Generic.IComparer`1" /> 实现,或者为 null,表示使用默认比较器 <see cref="P:System.Collections.Generic.Comparer`1.Default" />。</param>
  1512. <exception cref="T:System.InvalidOperationException">
  1513. <paramref name="comparer" /> 为 null,且默认比较器 <see cref="P:System.Collections.Generic.Comparer`1.Default" /> 找不到 <paramref name="T" /> 类型的 <see cref="T:System.IComparable`1" /> 泛型接口或 <see cref="T:System.IComparable" /> 接口的实现。</exception>
  1514. <exception cref="T:System.ArgumentException">
  1515. <paramref name="comparer" /> 的实现导致排序时出现错误。例如,将某个项与其自身进行比较时,<paramref name="comparer" /> 可能不返回 0。</exception>
  1516. </member>
  1517. <member name="M:System.Collections.Generic.List`1.Sort(System.Comparison{`0})">
  1518. <summary>使用指定的 <see cref="T:System.Comparison`1" /> 对整个 <see cref="T:System.Collections.Generic.List`1" /> 中的元素进行排序。</summary>
  1519. <param name="comparison">比较元素时要使用的 <see cref="T:System.Comparison`1" />。</param>
  1520. <exception cref="T:System.ArgumentNullException">
  1521. <paramref name="comparison" /> 为 null。</exception>
  1522. <exception cref="T:System.ArgumentException">
  1523. <paramref name="comparison" /> 的实现导致排序时出现错误。例如,将某个项与其自身进行比较时,<paramref name="comparison" /> 可能不返回 0。</exception>
  1524. </member>
  1525. <member name="M:System.Collections.Generic.List`1.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0})">
  1526. <summary>使用指定的比较器对 <see cref="T:System.Collections.Generic.List`1" /> 中某个范围内的元素进行排序。</summary>
  1527. <param name="index">要排序范围的从零开始的起始索引。</param>
  1528. <param name="count">要排序的范围的长度。</param>
  1529. <param name="comparer">比较元素时要使用的 <see cref="T:System.Collections.Generic.IComparer`1" /> 实现,或者为 null,表示使用默认比较器 <see cref="P:System.Collections.Generic.Comparer`1.Default" />。</param>
  1530. <exception cref="T:System.ArgumentOutOfRangeException">
  1531. <paramref name="index" /> 小于 0。- 或 -<paramref name="count" /> 小于 0。</exception>
  1532. <exception cref="T:System.ArgumentException">
  1533. <paramref name="index" /> 和 <paramref name="count" /> 未指定 <see cref="T:System.Collections.Generic.List`1" /> 中的有效范围。- 或 -<paramref name="comparer" /> 的实现导致排序时出现错误。例如,将某个项与其自身进行比较时,<paramref name="comparer" /> 可能不返回 0。</exception>
  1534. <exception cref="T:System.InvalidOperationException">
  1535. <paramref name="comparer" /> 为 null,且默认比较器 <see cref="P:System.Collections.Generic.Comparer`1.Default" /> 找不到 <paramref name="T" /> 类型的 <see cref="T:System.IComparable`1" /> 泛型接口或 <see cref="T:System.IComparable" /> 接口的实现。</exception>
  1536. </member>
  1537. <member name="P:System.Collections.Generic.List`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
  1538. <summary>获取一个值,该值指示 <see cref="T:System.Collections.Generic.ICollection`1" /> 是否为只读。</summary>
  1539. <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.在 <see cref="T:System.Collections.Generic.List`1" /> 的默认实现中,此属性始终返回 false。</returns>
  1540. </member>
  1541. <member name="M:System.Collections.Generic.List`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  1542. <summary>返回循环访问集合的枚举数。</summary>
  1543. <returns>可用于循环访问集合的 <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
  1544. </member>
  1545. <member name="M:System.Collections.Generic.List`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  1546. <summary>从特定的 <see cref="T:System.Array" /> 索引处开始,将 <see cref="T:System.Collections.ICollection" /> 的元素复制到一个 <see cref="T:System.Array" /> 中。</summary>
  1547. <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />.<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  1548. <param name="arrayIndex">
  1549. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  1550. <exception cref="T:System.ArgumentNullException">
  1551. <paramref name="array" /> 为 null。</exception>
  1552. <exception cref="T:System.ArgumentOutOfRangeException">
  1553. <paramref name="arrayIndex" /> 小于 0。</exception>
  1554. <exception cref="T:System.ArgumentException">
  1555. <paramref name="array" /> 是多维的。- 或 -<paramref name="array" /> 没有从零开始的索引。- 或 -源 <see cref="T:System.Collections.ICollection" /> 中的元素数目大于从 <paramref name="arrayIndex" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。- 或 -源 <see cref="T:System.Collections.ICollection" /> 的类型无法自动转换为目标 <paramref name="array" /> 的类型。</exception>
  1556. </member>
  1557. <member name="P:System.Collections.Generic.List`1.System#Collections#ICollection#IsSynchronized">
  1558. <summary>获取一个值,该值指示是否同步对 <see cref="T:System.Collections.ICollection" /> 的访问(线程安全)。</summary>
  1559. <returns>true if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, false.在 <see cref="T:System.Collections.Generic.List`1" /> 的默认实现中,此属性始终返回 false。</returns>
  1560. </member>
  1561. <member name="P:System.Collections.Generic.List`1.System#Collections#ICollection#SyncRoot">
  1562. <summary>获取可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。</summary>
  1563. <returns>可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。在 <see cref="T:System.Collections.Generic.List`1" /> 的默认实现中,此属性始终返回当前实例。</returns>
  1564. </member>
  1565. <member name="M:System.Collections.Generic.List`1.System#Collections#IEnumerable#GetEnumerator">
  1566. <summary>返回循环访问集合的枚举数。</summary>
  1567. <returns>可用于循环访问集合的 <see cref="T:System.Collections.IEnumerator" />。</returns>
  1568. </member>
  1569. <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Add(System.Object)">
  1570. <summary>将某项添加到 <see cref="T:System.Collections.IList" /> 中。</summary>
  1571. <returns>新元素的插入位置。</returns>
  1572. <param name="item">要添加到 <see cref="T:System.Collections.IList" /> 的 <see cref="T:System.Object" />。</param>
  1573. <exception cref="T:System.ArgumentException">
  1574. <paramref name="item" /> 属于不能分配给 <see cref="T:System.Collections.IList" /> 的类型。</exception>
  1575. </member>
  1576. <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Contains(System.Object)">
  1577. <summary>确定 <see cref="T:System.Collections.IList" /> 是否包含特定值。</summary>
  1578. <returns>true if <paramref name="item" /> is found in the <see cref="T:System.Collections.IList" />; otherwise, false.</returns>
  1579. <param name="item">要在 <see cref="T:System.Collections.IList" /> 中查找的 <see cref="T:System.Object" />。</param>
  1580. </member>
  1581. <member name="M:System.Collections.Generic.List`1.System#Collections#IList#IndexOf(System.Object)">
  1582. <summary>确定 <see cref="T:System.Collections.IList" /> 中特定项的索引。</summary>
  1583. <returns>如果在列表中找到,则为 <paramref name="item" /> 的索引;否则为 -1。</returns>
  1584. <param name="item">要在 <see cref="T:System.Collections.IList" /> 中定位的对象。</param>
  1585. <exception cref="T:System.ArgumentException">
  1586. <paramref name="item" /> 属于不能分配给 <see cref="T:System.Collections.IList" /> 的类型。</exception>
  1587. </member>
  1588. <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Insert(System.Int32,System.Object)">
  1589. <summary>将一个项插入指定索引处的 <see cref="T:System.Collections.IList" />。</summary>
  1590. <param name="index">从零开始的索引,应在该位置插入 <paramref name="item" />。</param>
  1591. <param name="item">要插入 <see cref="T:System.Collections.IList" /> 的对象。</param>
  1592. <exception cref="T:System.ArgumentOutOfRangeException">
  1593. <paramref name="index" /> 不是 <see cref="T:System.Collections.IList" /> 中的有效索引。 </exception>
  1594. <exception cref="T:System.ArgumentException">
  1595. <paramref name="item" /> 属于不能分配给 <see cref="T:System.Collections.IList" /> 的类型。</exception>
  1596. </member>
  1597. <member name="P:System.Collections.Generic.List`1.System#Collections#IList#IsFixedSize">
  1598. <summary>获取一个值,该值指示 <see cref="T:System.Collections.IList" /> 是否具有固定大小。</summary>
  1599. <returns>如果 <see cref="T:System.Collections.IList" /> 具有固定大小,则为 true;否则为 false。在 <see cref="T:System.Collections.Generic.List`1" /> 的默认实现中,此属性始终返回 false。</returns>
  1600. </member>
  1601. <member name="P:System.Collections.Generic.List`1.System#Collections#IList#IsReadOnly">
  1602. <summary>获取一个值,该值指示 <see cref="T:System.Collections.IList" /> 是否为只读。</summary>
  1603. <returns>true if the <see cref="T:System.Collections.IList" /> is read-only; otherwise, false.在 <see cref="T:System.Collections.Generic.List`1" /> 的默认实现中,此属性始终返回 false。</returns>
  1604. </member>
  1605. <member name="P:System.Collections.Generic.List`1.System#Collections#IList#Item(System.Int32)">
  1606. <summary>获取或设置指定索引处的元素。</summary>
  1607. <returns>指定索引处的元素。</returns>
  1608. <param name="index">要获取或设置的元素的从零开始的索引。</param>
  1609. <exception cref="T:System.ArgumentOutOfRangeException">
  1610. <paramref name="index" /> 不是 <see cref="T:System.Collections.IList" /> 中的有效索引。</exception>
  1611. <exception cref="T:System.ArgumentException">已设置属性,且 <paramref name="value" /> 属于不能对 <see cref="T:System.Collections.IList" /> 赋值的类型。</exception>
  1612. </member>
  1613. <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Remove(System.Object)">
  1614. <summary>从 <see cref="T:System.Collections.IList" /> 中移除特定对象的第一个匹配项。</summary>
  1615. <param name="item">要从 <see cref="T:System.Collections.IList" /> 中移除的对象。</param>
  1616. <exception cref="T:System.ArgumentException">
  1617. <paramref name="item" /> 属于不能分配给 <see cref="T:System.Collections.IList" /> 的类型。</exception>
  1618. </member>
  1619. <member name="M:System.Collections.Generic.List`1.ToArray">
  1620. <summary>将 <see cref="T:System.Collections.Generic.List`1" /> 的元素复制到新数组中。</summary>
  1621. <returns>一个数组,它包含 <see cref="T:System.Collections.Generic.List`1" /> 的元素的副本。</returns>
  1622. </member>
  1623. <member name="M:System.Collections.Generic.List`1.TrimExcess">
  1624. <summary>将容量设置为 <see cref="T:System.Collections.Generic.List`1" /> 中的实际元素数目(如果该数目小于某个阈值)。</summary>
  1625. </member>
  1626. <member name="M:System.Collections.Generic.List`1.TrueForAll(System.Predicate{`0})">
  1627. <summary>确定是否 <see cref="T:System.Collections.Generic.List`1" /> 中的每个元素都与指定的谓词所定义的条件相匹配。</summary>
  1628. <returns>如果 <see cref="T:System.Collections.Generic.List`1" /> 中的每个元素都与指定的谓词所定义的条件相匹配,则为 true;否则为 false。如果列表不包含任何元素,则返回值为 true。</returns>
  1629. <param name="match">
  1630. <see cref="T:System.Predicate`1" /> 委托,定义要据以检查元素的条件。</param>
  1631. <exception cref="T:System.ArgumentNullException">
  1632. <paramref name="match" /> 为 null。</exception>
  1633. </member>
  1634. <member name="T:System.Collections.Generic.List`1.Enumerator">
  1635. <summary>枚举 <see cref="T:System.Collections.Generic.List`1" /> 的元素。</summary>
  1636. </member>
  1637. <member name="P:System.Collections.Generic.List`1.Enumerator.Current">
  1638. <summary>获取枚举数当前位置的元素。</summary>
  1639. <returns>
  1640. <see cref="T:System.Collections.Generic.List`1" /> 中位于该枚举数当前位置的元素。</returns>
  1641. </member>
  1642. <member name="M:System.Collections.Generic.List`1.Enumerator.Dispose">
  1643. <summary>释放由 <see cref="T:System.Collections.Generic.List`1.Enumerator" /> 使用的所有资源。</summary>
  1644. </member>
  1645. <member name="M:System.Collections.Generic.List`1.Enumerator.MoveNext">
  1646. <summary>使枚举数前进到 <see cref="T:System.Collections.Generic.List`1" /> 的下一个元素。</summary>
  1647. <returns>如果枚举数成功地推进到下一个元素,则为 true;如果枚举数越过集合的结尾,则为 false。</returns>
  1648. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  1649. </member>
  1650. <member name="P:System.Collections.Generic.List`1.Enumerator.System#Collections#IEnumerator#Current">
  1651. <summary>获取枚举数当前位置的元素。</summary>
  1652. <returns>
  1653. <see cref="T:System.Collections.Generic.List`1" /> 中位于该枚举数当前位置的元素。</returns>
  1654. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  1655. </member>
  1656. <member name="M:System.Collections.Generic.List`1.Enumerator.System#Collections#IEnumerator#Reset">
  1657. <summary>将枚举数设置为其初始位置,该位置位于集合中第一个元素之前。</summary>
  1658. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  1659. </member>
  1660. <member name="T:System.Collections.Generic.Queue`1">
  1661. <summary>表示对象的先进先出集合。</summary>
  1662. <typeparam name="T">指定队列中元素的类型。</typeparam>
  1663. <filterpriority>1</filterpriority>
  1664. </member>
  1665. <member name="M:System.Collections.Generic.Queue`1.#ctor">
  1666. <summary>初始化 <see cref="T:System.Collections.Generic.Queue`1" /> 类的新实例,该实例为空并且具有默认初始容量。</summary>
  1667. </member>
  1668. <member name="M:System.Collections.Generic.Queue`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
  1669. <summary>初始化 <see cref="T:System.Collections.Generic.Queue`1" /> 类的新实例,该实例包含从指定集合复制的元素并且具有足够的容量来容纳所复制的元素。</summary>
  1670. <param name="collection">其元素被复制到新的 <see cref="T:System.Collections.Generic.Queue`1" /> 中的集合。</param>
  1671. <exception cref="T:System.ArgumentNullException">
  1672. <paramref name="collection" /> is null.</exception>
  1673. </member>
  1674. <member name="M:System.Collections.Generic.Queue`1.#ctor(System.Int32)">
  1675. <summary>初始化 <see cref="T:System.Collections.Generic.Queue`1" /> 类的新实例,该实例为空并且具有指定的初始容量。</summary>
  1676. <param name="capacity">
  1677. <see cref="T:System.Collections.Generic.Queue`1" /> 可包含的初始元素数目。</param>
  1678. <exception cref="T:System.ArgumentOutOfRangeException">
  1679. <paramref name="capacity" /> is less than zero.</exception>
  1680. </member>
  1681. <member name="M:System.Collections.Generic.Queue`1.Clear">
  1682. <summary>从 <see cref="T:System.Collections.Generic.Queue`1" /> 中移除所有对象。</summary>
  1683. <filterpriority>1</filterpriority>
  1684. </member>
  1685. <member name="M:System.Collections.Generic.Queue`1.Contains(`0)">
  1686. <summary>确定某元素是否在 <see cref="T:System.Collections.Generic.Queue`1" /> 中。</summary>
  1687. <returns>如果在 <see cref="T:System.Collections.Generic.Queue`1" /> 中找到了 <paramref name="item" />,则为 true;否则为 false。</returns>
  1688. <param name="item">要在 <see cref="T:System.Collections.Generic.Queue`1" /> 中定位的对象。对于引用类型,该值可以为 null。</param>
  1689. </member>
  1690. <member name="M:System.Collections.Generic.Queue`1.CopyTo(`0[],System.Int32)">
  1691. <summary>从指定数组索引开始将 <see cref="T:System.Collections.Generic.Queue`1" /> 元素复制到现有一维 <see cref="T:System.Array" /> 中。</summary>
  1692. <param name="array">一维 <see cref="T:System.Array" />,它是从 <see cref="T:System.Collections.Generic.Queue`1" /> 复制的元素的目标。<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  1693. <param name="arrayIndex">
  1694. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  1695. <exception cref="T:System.ArgumentNullException">
  1696. <paramref name="array" /> is null.</exception>
  1697. <exception cref="T:System.ArgumentOutOfRangeException">
  1698. <paramref name="arrayIndex" /> is less than zero.</exception>
  1699. <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>
  1700. </member>
  1701. <member name="P:System.Collections.Generic.Queue`1.Count">
  1702. <summary>获取 <see cref="T:System.Collections.Generic.Queue`1" /> 中包含的元素数。</summary>
  1703. <returns>
  1704. <see cref="T:System.Collections.Generic.Queue`1" /> 中包含的元素数。</returns>
  1705. </member>
  1706. <member name="M:System.Collections.Generic.Queue`1.Dequeue">
  1707. <summary>移除并返回位于 <see cref="T:System.Collections.Generic.Queue`1" /> 开始处的对象。</summary>
  1708. <returns>从 <see cref="T:System.Collections.Generic.Queue`1" /> 的开头移除的对象。</returns>
  1709. <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Queue`1" /> is empty.</exception>
  1710. </member>
  1711. <member name="M:System.Collections.Generic.Queue`1.Enqueue(`0)">
  1712. <summary>将对象添加到 <see cref="T:System.Collections.Generic.Queue`1" /> 的结尾处。</summary>
  1713. <param name="item">要添加到 <see cref="T:System.Collections.Generic.Queue`1" /> 的对象。对于引用类型,该值可以为 null。</param>
  1714. </member>
  1715. <member name="M:System.Collections.Generic.Queue`1.GetEnumerator">
  1716. <summary>返回循环访问 <see cref="T:System.Collections.Generic.Queue`1" /> 的枚举数。</summary>
  1717. <returns>用于 <see cref="T:System.Collections.Generic.Queue`1" /> 的 <see cref="T:System.Collections.Generic.Queue`1.Enumerator" />。</returns>
  1718. </member>
  1719. <member name="M:System.Collections.Generic.Queue`1.Peek">
  1720. <summary>返回位于 <see cref="T:System.Collections.Generic.Queue`1" /> 开始处的对象但不将其移除。</summary>
  1721. <returns>位于 <see cref="T:System.Collections.Generic.Queue`1" /> 的开头的对象。</returns>
  1722. <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Queue`1" /> is empty.</exception>
  1723. </member>
  1724. <member name="M:System.Collections.Generic.Queue`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  1725. <summary>返回循环访问集合的枚举数。</summary>
  1726. <returns>可用于循环访问集合的 <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
  1727. </member>
  1728. <member name="M:System.Collections.Generic.Queue`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  1729. <summary>从特定的 <see cref="T:System.Array" /> 索引处开始,将 <see cref="T:System.Collections.ICollection" /> 的元素复制到一个 <see cref="T:System.Array" /> 中。</summary>
  1730. <param name="array">一维 <see cref="T:System.Array" />,它是从 <see cref="T:System.Collections.ICollection" /> 复制的元素的目标。<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  1731. <param name="index">
  1732. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  1733. <exception cref="T:System.ArgumentNullException">
  1734. <paramref name="array" /> is null.</exception>
  1735. <exception cref="T:System.ArgumentOutOfRangeException">
  1736. <paramref name="index" /> is less than zero.</exception>
  1737. <exception cref="T:System.ArgumentException">
  1738. <paramref name="array" /> is multidimensional.-or-<paramref name="array" /> does not have zero-based indexing.-or-The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.-or-The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
  1739. </member>
  1740. <member name="P:System.Collections.Generic.Queue`1.System#Collections#ICollection#IsSynchronized">
  1741. <summary>获取一个值,该值指示是否同步对 <see cref="T:System.Collections.ICollection" /> 的访问(线程安全)。</summary>
  1742. <returns>如果对 <see cref="T:System.Collections.ICollection" /> 的访问是同步的(线程安全),则为 true;否则为 false。在 <see cref="T:System.Collections.Generic.Queue`1" /> 的默认实现中,此属性始终返回 false。</returns>
  1743. </member>
  1744. <member name="P:System.Collections.Generic.Queue`1.System#Collections#ICollection#SyncRoot">
  1745. <summary>获取可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。</summary>
  1746. <returns>可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。在 <see cref="T:System.Collections.Generic.Queue`1" /> 的默认实现中,此属性始终返回当前实例。</returns>
  1747. </member>
  1748. <member name="M:System.Collections.Generic.Queue`1.System#Collections#IEnumerable#GetEnumerator">
  1749. <summary>返回循环访问集合的枚举数。</summary>
  1750. <returns>可用于循环访问集合的 <see cref="T:System.Collections.IEnumerator" />。</returns>
  1751. </member>
  1752. <member name="M:System.Collections.Generic.Queue`1.ToArray">
  1753. <summary>将 <see cref="T:System.Collections.Generic.Queue`1" /> 元素复制到新数组。</summary>
  1754. <returns>包含从 <see cref="T:System.Collections.Generic.Queue`1" /> 复制的元素的新数组。</returns>
  1755. </member>
  1756. <member name="M:System.Collections.Generic.Queue`1.TrimExcess">
  1757. <summary>如果元素数小于当前容量的 90%,将容量设置为 <see cref="T:System.Collections.Generic.Queue`1" /> 中的实际元素数。</summary>
  1758. </member>
  1759. <member name="T:System.Collections.Generic.Queue`1.Enumerator">
  1760. <summary>枚举 <see cref="T:System.Collections.Generic.Queue`1" /> 的元素。</summary>
  1761. </member>
  1762. <member name="P:System.Collections.Generic.Queue`1.Enumerator.Current">
  1763. <summary>获取枚举数当前位置的元素。</summary>
  1764. <returns>
  1765. <see cref="T:System.Collections.Generic.Queue`1" /> 中位于该枚举数当前位置的元素。</returns>
  1766. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  1767. </member>
  1768. <member name="M:System.Collections.Generic.Queue`1.Enumerator.Dispose">
  1769. <summary>释放由 <see cref="T:System.Collections.Generic.Queue`1.Enumerator" /> 使用的所有资源。</summary>
  1770. </member>
  1771. <member name="M:System.Collections.Generic.Queue`1.Enumerator.MoveNext">
  1772. <summary>使枚举数前进到 <see cref="T:System.Collections.Generic.Queue`1" /> 的下一个元素。</summary>
  1773. <returns>如果枚举数成功地推进到下一个元素,则为 true;如果枚举数越过集合的结尾,则为 false。</returns>
  1774. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  1775. </member>
  1776. <member name="P:System.Collections.Generic.Queue`1.Enumerator.System#Collections#IEnumerator#Current">
  1777. <summary>获取枚举数当前位置的元素。</summary>
  1778. <returns>集合中位于枚举数当前位置的元素。</returns>
  1779. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  1780. </member>
  1781. <member name="M:System.Collections.Generic.Queue`1.Enumerator.System#Collections#IEnumerator#Reset">
  1782. <summary>将枚举数设置为其初始位置,该位置位于集合中第一个元素之前。</summary>
  1783. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  1784. </member>
  1785. <member name="T:System.Collections.Generic.SortedDictionary`2">
  1786. <summary>表示根据键进行排序的键/值对的集合。</summary>
  1787. <typeparam name="TKey">字典中的键的类型。</typeparam>
  1788. <typeparam name="TValue">字典中的值的类型。</typeparam>
  1789. <filterpriority>1</filterpriority>
  1790. </member>
  1791. <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor">
  1792. <summary>初始化 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 类的一个新实例,该实例为空并对键类型使用默认 <see cref="T:System.Collections.Generic.IComparer`1" /> 实现。</summary>
  1793. </member>
  1794. <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IComparer{`0})">
  1795. <summary>初始化 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 类的一个新实例,该实例为空并使用指定的 <see cref="T:System.Collections.Generic.IComparer`1" /> 实现来比较键。</summary>
  1796. <param name="comparer">比较键时要使用的 <see cref="T:System.Collections.Generic.IComparer`1" /> 实现,或者为 null,以便为键类型使用默认的 <see cref="T:System.Collections.Generic.Comparer`1" />。</param>
  1797. </member>
  1798. <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})">
  1799. <summary>初始化 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 类的新实例,该实例包含从指定的 <see cref="T:System.Collections.Generic.IDictionary`2" /> 中复制的元素,并使用键类型的默认 <see cref="T:System.Collections.Generic.IComparer`1" /> 实现。</summary>
  1800. <param name="dictionary">
  1801. <see cref="T:System.Collections.Generic.IDictionary`2" />,其元素被复制到新的 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中。</param>
  1802. <exception cref="T:System.ArgumentNullException">
  1803. <paramref name="dictionary" /> 为 null。</exception>
  1804. <exception cref="T:System.ArgumentException">
  1805. <paramref name="dictionary" /> 包含一个或多个重复键。</exception>
  1806. </member>
  1807. <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IComparer{`0})">
  1808. <summary>初始化 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 类的新实例,该实例包含从指定的 <see cref="T:System.Collections.Generic.IDictionary`2" /> 中复制的元素,并使用指定的 <see cref="T:System.Collections.Generic.IComparer`1" /> 实现来比较键。</summary>
  1809. <param name="dictionary">
  1810. <see cref="T:System.Collections.Generic.IDictionary`2" />,其元素被复制到新的 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中。</param>
  1811. <param name="comparer">比较键时要使用的 <see cref="T:System.Collections.Generic.IComparer`1" /> 实现,或者为 null,以便为键类型使用默认的 <see cref="T:System.Collections.Generic.Comparer`1" />。</param>
  1812. <exception cref="T:System.ArgumentNullException">
  1813. <paramref name="dictionary" /> 为 null。</exception>
  1814. <exception cref="T:System.ArgumentException">
  1815. <paramref name="dictionary" /> 包含一个或多个重复键。</exception>
  1816. </member>
  1817. <member name="M:System.Collections.Generic.SortedDictionary`2.Add(`0,`1)">
  1818. <summary>将带有指定键和值的元素添加到 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中。</summary>
  1819. <param name="key">要添加的元素的键。</param>
  1820. <param name="value">要添加的元素的值。对于引用类型,该值可以为 null。</param>
  1821. <exception cref="T:System.ArgumentNullException">
  1822. <paramref name="key" /> 为 null。</exception>
  1823. <exception cref="T:System.ArgumentException">
  1824. <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中已存在具有相同键的元素。</exception>
  1825. </member>
  1826. <member name="M:System.Collections.Generic.SortedDictionary`2.Clear">
  1827. <summary>从 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中移除所有元素。</summary>
  1828. </member>
  1829. <member name="P:System.Collections.Generic.SortedDictionary`2.Comparer">
  1830. <summary>获取用于对 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 的元素进行排序的 <see cref="T:System.Collections.Generic.IComparer`1" />。</summary>
  1831. <returns>用于对 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 的元素进行排序的 <see cref="T:System.Collections.Generic.IComparer`1" />。</returns>
  1832. </member>
  1833. <member name="M:System.Collections.Generic.SortedDictionary`2.ContainsKey(`0)">
  1834. <summary>确定 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 是否包含具有指定键的元素。</summary>
  1835. <returns>true if the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified key; otherwise, false.</returns>
  1836. <param name="key">要在 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中定位的键。</param>
  1837. <exception cref="T:System.ArgumentNullException">
  1838. <paramref name="key" /> 为 null。</exception>
  1839. </member>
  1840. <member name="M:System.Collections.Generic.SortedDictionary`2.ContainsValue(`1)">
  1841. <summary>确定 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 是否包含具有指定值的元素。</summary>
  1842. <returns>true if the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified value; otherwise, false.</returns>
  1843. <param name="value">要在 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中定位的值。对于引用类型,该值可以为 null。</param>
  1844. </member>
  1845. <member name="M:System.Collections.Generic.SortedDictionary`2.CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
  1846. <summary>从指定的索引处开始,将 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 的元素复制到指定的 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 结构的数组中。</summary>
  1847. <param name="array">
  1848. <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 结构的一维数组,它是从当前 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中复制的元素的目标。该数组必须具有从零开始的索引。</param>
  1849. <param name="index">
  1850. <paramref name="array" /> 中从零开始的索引,将在此处开始复制。</param>
  1851. <exception cref="T:System.ArgumentNullException">
  1852. <paramref name="array" /> 为 null。</exception>
  1853. <exception cref="T:System.ArgumentOutOfRangeException">
  1854. <paramref name="index" /> 小于 0。</exception>
  1855. <exception cref="T:System.ArgumentException">源 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中的元素数目大于从 <paramref name="index" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。</exception>
  1856. </member>
  1857. <member name="P:System.Collections.Generic.SortedDictionary`2.Count">
  1858. <summary>获取包含在 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中的键/值对的数目。</summary>
  1859. <returns>包含在 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中的键/值对的数目。</returns>
  1860. </member>
  1861. <member name="M:System.Collections.Generic.SortedDictionary`2.GetEnumerator">
  1862. <summary>返回一个循环访问 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 的枚举数。</summary>
  1863. <returns>用于 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 的 <see cref="T:System.Collections.Generic.SortedDictionary`2.Enumerator" />。</returns>
  1864. </member>
  1865. <member name="P:System.Collections.Generic.SortedDictionary`2.Item(`0)">
  1866. <summary>获取或设置与指定的键关联的值。</summary>
  1867. <returns>与指定的键相关联的值。如果找不到指定的键,get 操作便会引发 <see cref="T:System.Collections.Generic.KeyNotFoundException" />,而 set 操作会创建一个具有指定键的新元素。</returns>
  1868. <param name="key">要获取或设置的值的键。</param>
  1869. <exception cref="T:System.ArgumentNullException">
  1870. <paramref name="key" /> 为 null。</exception>
  1871. <exception cref="T:System.Collections.Generic.KeyNotFoundException">已检索该属性,并且集合中不存在 <paramref name="key" />。</exception>
  1872. </member>
  1873. <member name="P:System.Collections.Generic.SortedDictionary`2.Keys">
  1874. <summary>获取包含 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中的键的集合。</summary>
  1875. <returns>包含 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中的键的 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" />。</returns>
  1876. </member>
  1877. <member name="M:System.Collections.Generic.SortedDictionary`2.Remove(`0)">
  1878. <summary>从 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中移除包含指定键的元素。</summary>
  1879. <returns>如果该元素已成功移除,则为 true;否则为 false。如果在 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中没有找到 <paramref name="key" />,此方法也会返回 false。</returns>
  1880. <param name="key">要移除的元素的键。</param>
  1881. <exception cref="T:System.ArgumentNullException">
  1882. <paramref name="key" /> 为 null。</exception>
  1883. </member>
  1884. <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{T}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
  1885. <summary>向 <see cref="T:System.Collections.Generic.ICollection`1" /> 添加一项。</summary>
  1886. <param name="keyValuePair">要添加到 <see cref="T:System.Collections.Generic.ICollection`1" /> 中的 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 结构。</param>
  1887. <exception cref="T:System.ArgumentNullException">
  1888. <paramref name="keyValuePair" /> 为 null。</exception>
  1889. <exception cref="T:System.ArgumentException">
  1890. <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中已存在具有相同键的元素。</exception>
  1891. </member>
  1892. <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{T}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
  1893. <summary>确定 <see cref="T:System.Collections.Generic.ICollection`1" /> 是否包含特定的键和值。</summary>
  1894. <returns>true if <paramref name="keyValuePair" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, false.</returns>
  1895. <param name="keyValuePair">要在 <see cref="T:System.Collections.Generic.ICollection`1" /> 中查找的 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 结构。</param>
  1896. </member>
  1897. <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{T}#IsReadOnly">
  1898. <summary>获取一个值,该值指示 <see cref="T:System.Collections.Generic.ICollection`1" /> 是否为只读。</summary>
  1899. <returns>如果 <see cref="T:System.Collections.Generic.ICollection`1" /> 为只读,则为 true;否则为 false。在 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 的默认实现中,此属性始终返回 false。</returns>
  1900. </member>
  1901. <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{T}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
  1902. <summary>从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中移除指定元素的第一个匹配项。</summary>
  1903. <returns>如果已从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中成功移除 <paramref name="keyValuePair" />,则为 true;否则为 false。This method also returns false if <paramref name="keyValuePair" /> was not found in the <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
  1904. <param name="keyValuePair">要从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中移除的 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 结构。</param>
  1905. </member>
  1906. <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
  1907. <summary>获取包含 <see cref="T:System.Collections.Generic.IDictionary`2" /> 的键的 <see cref="T:System.Collections.Generic.ICollection`1" />。</summary>
  1908. <returns>一个 <see cref="T:System.Collections.Generic.ICollection`1" />,它包含 <see cref="T:System.Collections.Generic.IDictionary`2" /> 的键。</returns>
  1909. </member>
  1910. <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
  1911. <summary>获取包含 <see cref="T:System.Collections.Generic.IDictionary`2" /> 中的值的 <see cref="T:System.Collections.Generic.ICollection`1" />。</summary>
  1912. <returns>一个 <see cref="T:System.Collections.Generic.ICollection`1" />,它包含 <see cref="T:System.Collections.Generic.IDictionary`2" /> 中的值。</returns>
  1913. </member>
  1914. <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  1915. <summary>返回循环访问集合的枚举数。</summary>
  1916. <returns>一个 <see cref="T:System.Collections.IEnumerator" />,可用于循环访问集合。</returns>
  1917. </member>
  1918. <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Keys">
  1919. <summary>获取包含在 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中的键的集合</summary>
  1920. <returns>包含在 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中的键的集合</returns>
  1921. </member>
  1922. <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Values">
  1923. <summary>获取包含在 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中的值的集合</summary>
  1924. <returns>包含在 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中的值的集合</returns>
  1925. </member>
  1926. <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  1927. <summary>从指定的数组索引开始,将 <see cref="T:System.Collections.Generic.ICollection`1" /> 中的元素复制到一个数组中。</summary>
  1928. <param name="array">一维数组,它是从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中复制的元素的目标。该数组的索引必须从零开始。</param>
  1929. <param name="index">
  1930. <paramref name="array" /> 中从零开始的索引,将在此处开始复制。</param>
  1931. <exception cref="T:System.ArgumentNullException">
  1932. <paramref name="array" /> 为 null。</exception>
  1933. <exception cref="T:System.ArgumentOutOfRangeException">
  1934. <paramref name="index" /> 小于 0。</exception>
  1935. <exception cref="T:System.ArgumentException">
  1936. <paramref name="array" /> 是多维的。- 或 -<paramref name="array" /> 没有从零开始的索引。- 或 -源 <see cref="T:System.Collections.Generic.ICollection`1" /> 中的元素数目大于从 <paramref name="index" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。- 或 -源 <see cref="T:System.Collections.Generic.ICollection`1" /> 的类型无法自动转换为目标 <paramref name="array" /> 的类型。</exception>
  1937. </member>
  1938. <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#ICollection#IsSynchronized">
  1939. <summary>获取一个值,该值指示是否同步对 <see cref="T:System.Collections.ICollection" /> 的访问(线程安全)。</summary>
  1940. <returns>true if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, false.在 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 的默认实现中,此属性始终返回 false。</returns>
  1941. </member>
  1942. <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#ICollection#SyncRoot">
  1943. <summary>获取一个可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。</summary>
  1944. <returns>一个可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。</returns>
  1945. </member>
  1946. <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
  1947. <summary>使用所提供的键和值向 <see cref="T:System.Collections.IDictionary" /> 中添加一个元素。</summary>
  1948. <param name="key">用作要添加的元素的键的对象。</param>
  1949. <param name="value">用作要添加的元素的值的对象。</param>
  1950. <exception cref="T:System.ArgumentNullException">
  1951. <paramref name="key" /> 为 null。</exception>
  1952. <exception cref="T:System.ArgumentException">
  1953. <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.IDictionary" />.- 或 -<paramref name="value" /> 属于不能分配给 <see cref="T:System.Collections.IDictionary" /> 的值类型 <paramref name="TValue" /> 的类型。- 或 -<see cref="T:System.Collections.IDictionary" /> 中已存在具有相同键的元素。</exception>
  1954. </member>
  1955. <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Contains(System.Object)">
  1956. <summary>确定 <see cref="T:System.Collections.IDictionary" /> 是否包含具有指定键的元素。</summary>
  1957. <returns>true if the <see cref="T:System.Collections.IDictionary" /> contains an element with the key; otherwise, false.</returns>
  1958. <param name="key">要在 <see cref="T:System.Collections.IDictionary" /> 中定位的键。</param>
  1959. <exception cref="T:System.ArgumentNullException">
  1960. <paramref name="key" /> 为 null。</exception>
  1961. </member>
  1962. <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#GetEnumerator">
  1963. <summary>返回 <see cref="T:System.Collections.IDictionary" /> 的 <see cref="T:System.Collections.IDictionaryEnumerator" />。</summary>
  1964. <returns>
  1965. <see cref="T:System.Collections.IDictionary" /> 的一个 <see cref="T:System.Collections.IDictionaryEnumerator" />。</returns>
  1966. </member>
  1967. <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#IsFixedSize">
  1968. <summary>获取一个值,该值指示 <see cref="T:System.Collections.IDictionary" /> 是否具有固定大小。</summary>
  1969. <returns>true if the <see cref="T:System.Collections.IDictionary" /> has a fixed size; otherwise, false.在 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 的默认实现中,此属性始终返回 false。</returns>
  1970. </member>
  1971. <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#IsReadOnly">
  1972. <summary>获取一个值,该值指示 <see cref="T:System.Collections.IDictionary" /> 是否为只读。</summary>
  1973. <returns>true if the <see cref="T:System.Collections.IDictionary" /> is read-only; otherwise, false.在 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 的默认实现中,此属性始终返回 false。</returns>
  1974. </member>
  1975. <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Item(System.Object)">
  1976. <summary>获取或设置具有指定键的元素。</summary>
  1977. <returns>具有指定键的元素,如果 <paramref name="key" /> 不在词典中或者 <paramref name="key" /> 属于不能分配给 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 的键类型 <paramref name="TKey" /> 的类型,则为 null。</returns>
  1978. <param name="key">要获取的元素的键。</param>
  1979. <exception cref="T:System.ArgumentNullException">
  1980. <paramref name="key" /> 为 null。</exception>
  1981. <exception cref="T:System.ArgumentException">A value is being assigned, and <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.- 或 -A value is being assigned, and <paramref name="value" /> is of a type that is not assignable to the value type <paramref name="TValue" /> of the <see cref="T:System.Collections.Generic.SortedDictionary`2" />.</exception>
  1982. </member>
  1983. <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Keys">
  1984. <summary>获取包含 <see cref="T:System.Collections.IDictionary" /> 的键的 <see cref="T:System.Collections.ICollection" />。</summary>
  1985. <returns>一个 <see cref="T:System.Collections.ICollection" />,它包含 <see cref="T:System.Collections.IDictionary" /> 的键。</returns>
  1986. </member>
  1987. <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Remove(System.Object)">
  1988. <summary>从 <see cref="T:System.Collections.IDictionary" /> 中移除包含指定键的元素。</summary>
  1989. <param name="key">要移除的元素的键。</param>
  1990. <exception cref="T:System.ArgumentNullException">
  1991. <paramref name="key" /> 为 null。</exception>
  1992. </member>
  1993. <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Values">
  1994. <summary>获取包含 <see cref="T:System.Collections.IDictionary" /> 中的值的 <see cref="T:System.Collections.ICollection" />。</summary>
  1995. <returns>一个 <see cref="T:System.Collections.ICollection" />,它包含 <see cref="T:System.Collections.IDictionary" /> 中的值。</returns>
  1996. </member>
  1997. <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IEnumerable#GetEnumerator">
  1998. <summary>返回一个循环访问集合的枚举器。</summary>
  1999. <returns>一个 <see cref="T:System.Collections.Generic.IEnumerator`1" />,可用于循环访问集合。</returns>
  2000. </member>
  2001. <member name="M:System.Collections.Generic.SortedDictionary`2.TryGetValue(`0,`1@)">
  2002. <summary>获取与指定键关联的值。</summary>
  2003. <returns>true if the <see cref="T:System.Collections.Generic.SortedDictionary`2" /> contains an element with the specified key; otherwise, false.</returns>
  2004. <param name="key">要获取的值的键。</param>
  2005. <param name="value">如果找到指定的键,此方法将返回与该键关联的值;否则返回 <paramref name="value" /> 参数类型的默认值。 </param>
  2006. <exception cref="T:System.ArgumentNullException">
  2007. <paramref name="key" /> 为 null。</exception>
  2008. </member>
  2009. <member name="P:System.Collections.Generic.SortedDictionary`2.Values">
  2010. <summary>获取包含 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中的值的集合。</summary>
  2011. <returns>包含 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中的值的 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" />。</returns>
  2012. </member>
  2013. <member name="T:System.Collections.Generic.SortedDictionary`2.Enumerator">
  2014. <summary>枚举 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 的元素。</summary>
  2015. </member>
  2016. <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.Current">
  2017. <summary>获取枚举数当前位置的元素。</summary>
  2018. <returns>
  2019. <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中位于该枚举数当前位置的元素。</returns>
  2020. </member>
  2021. <member name="M:System.Collections.Generic.SortedDictionary`2.Enumerator.Dispose">
  2022. <summary>释放由 <see cref="T:System.Collections.Generic.SortedDictionary`2.Enumerator" /> 使用的所有资源。</summary>
  2023. </member>
  2024. <member name="M:System.Collections.Generic.SortedDictionary`2.Enumerator.MoveNext">
  2025. <summary>使枚举数前进到 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 的下一个元素。</summary>
  2026. <returns>如果枚举数成功地推进到下一个元素,则为 true;如果枚举数越过集合的结尾,则为 false。</returns>
  2027. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  2028. </member>
  2029. <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Entry">
  2030. <summary>以 <see cref="T:System.Collections.DictionaryEntry" /> 结构的形式获取枚举数当前位置的元素。</summary>
  2031. <returns>集合中位于字典当前位置的元素,形式为<see cref="T:System.Collections.DictionaryEntry" /> 结构。</returns>
  2032. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  2033. </member>
  2034. <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Key">
  2035. <summary>获取位于枚举数当前位置的元素的键。</summary>
  2036. <returns>集合中位于该枚举数当前位置的元素的键。</returns>
  2037. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  2038. </member>
  2039. <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Value">
  2040. <summary>获取位于枚举数当前位置的元素的值。</summary>
  2041. <returns>集合中位于该枚举数当前位置的元素的值。</returns>
  2042. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  2043. </member>
  2044. <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IEnumerator#Current">
  2045. <summary>获取枚举数当前位置的元素。</summary>
  2046. <returns>集合中位于枚举数当前位置的元素。</returns>
  2047. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  2048. </member>
  2049. <member name="M:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IEnumerator#Reset">
  2050. <summary>将枚举数设置为其初始位置,该位置位于集合中第一个元素之前。</summary>
  2051. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  2052. </member>
  2053. <member name="T:System.Collections.Generic.SortedDictionary`2.KeyCollection">
  2054. <summary>表示 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中键的集合。此类不能被继承。</summary>
  2055. </member>
  2056. <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.#ctor(System.Collections.Generic.SortedDictionary{`0,`1})">
  2057. <summary>初始化 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 类的新实例,该实例反映指定的 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中的键。</summary>
  2058. <param name="dictionary">
  2059. <see cref="T:System.Collections.Generic.SortedDictionary`2" />,其键反映在新的 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 中。</param>
  2060. <exception cref="T:System.ArgumentNullException">
  2061. <paramref name="dictionary" /> 为 null。</exception>
  2062. </member>
  2063. <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.CopyTo(`0[],System.Int32)">
  2064. <summary>从指定数组索引位置开始,将 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 元素复制到某个现有的一维数组。</summary>
  2065. <param name="array">一维数组,它是从 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 中复制的元素的目标。该数组的索引必须从零开始。</param>
  2066. <param name="index">
  2067. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  2068. <exception cref="T:System.ArgumentNullException">
  2069. <paramref name="array" /> 为 null。</exception>
  2070. <exception cref="T:System.ArgumentOutOfRangeException">
  2071. <paramref name="index" /> 小于 0。</exception>
  2072. <exception cref="T:System.ArgumentException">源 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 中的元素数目大于从 <paramref name="index" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。</exception>
  2073. </member>
  2074. <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.Count">
  2075. <summary>获取 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 中包含的元素数。</summary>
  2076. <returns>
  2077. <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 中包含的元素个数。</returns>
  2078. </member>
  2079. <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.GetEnumerator">
  2080. <summary>返回循环访问 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 的枚举数。</summary>
  2081. <returns>用于 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 的 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator" /> 结构。</returns>
  2082. </member>
  2083. <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Add(`0)">
  2084. <summary>将某项添加到 <see cref="T:System.Collections.Generic.ICollection`1" /> 中。此实现始终引发 <see cref="T:System.NotSupportedException" />。</summary>
  2085. <param name="item">要添加到 <see cref="T:System.Collections.Generic.ICollection`1" /> 的对象。</param>
  2086. <exception cref="T:System.NotSupportedException">始终被引发;该集合为只读。</exception>
  2087. </member>
  2088. <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Clear">
  2089. <summary>从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中移除所有项。此实现始终引发 <see cref="T:System.NotSupportedException" />。</summary>
  2090. <exception cref="T:System.NotSupportedException">始终被引发;该集合为只读。</exception>
  2091. </member>
  2092. <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Contains(`0)">
  2093. <summary>确定 <see cref="T:System.Collections.Generic.ICollection`1" /> 是否包含指定值。</summary>
  2094. <returns>如果在 <see cref="T:System.Collections.Generic.ICollection`1" /> 中找到 <paramref name="item" />,则为 true;否则为 false。</returns>
  2095. <param name="item">要在 <see cref="T:System.Collections.Generic.ICollection`1" /> 中定位的对象。</param>
  2096. </member>
  2097. <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#IsReadOnly">
  2098. <summary>获取一个值,该值指示 <see cref="T:System.Collections.Generic.ICollection`1" /> 是否为只读。</summary>
  2099. <returns>如果 <see cref="T:System.Collections.Generic.ICollection`1" /> 为只读,则为 true;否则为 false。在 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 的默认实现中,此属性始终返回 false。</returns>
  2100. </member>
  2101. <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Remove(`0)">
  2102. <summary>从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中移除特定对象的第一个匹配项。此实现始终引发 <see cref="T:System.NotSupportedException" />。</summary>
  2103. <returns>如果已从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中成功移除了 <paramref name="item" />,则为 true;否则为 false。如果在 <see cref="T:System.Collections.Generic.ICollection`1" /> 中没有找到 <paramref name="item" />,此方法也会返回 false。</returns>
  2104. <param name="item">要从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中移除的对象。</param>
  2105. <exception cref="T:System.NotSupportedException">始终被引发;该集合为只读。</exception>
  2106. </member>
  2107. <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  2108. <summary>返回一个循环访问集合的枚举器。</summary>
  2109. <returns>可用于循环访问集合的 <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
  2110. </member>
  2111. <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  2112. <summary>从特定的数组索引开始,将 <see cref="T:System.Collections.ICollection" /> 的元素复制到一个数组中。</summary>
  2113. <param name="array">一维数组,它是从 <see cref="T:System.Collections.ICollection" /> 中复制的元素的目标。该数组的索引必须从零开始。</param>
  2114. <param name="index">
  2115. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  2116. <exception cref="T:System.ArgumentNullException">
  2117. <paramref name="array" /> 为 null。</exception>
  2118. <exception cref="T:System.ArgumentOutOfRangeException">
  2119. <paramref name="index" /> 小于 0。</exception>
  2120. <exception cref="T:System.ArgumentException">
  2121. <paramref name="array" /> 是多维的。- 或 -<paramref name="array" /> 没有从零开始的索引。- 或 -源 <see cref="T:System.Collections.ICollection" /> 中的元素数目大于从 <paramref name="index" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。- 或 -源 <see cref="T:System.Collections.ICollection" /> 的类型无法自动转换为目标 <paramref name="array" /> 的类型。</exception>
  2122. </member>
  2123. <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#ICollection#IsSynchronized">
  2124. <summary>获取一个值,该值指示是否同步对 <see cref="T:System.Collections.ICollection" /> 的访问(线程安全)。</summary>
  2125. <returns>如果对 <see cref="T:System.Collections.ICollection" /> 的访问是同步的(线程安全),则为 true;否则为 false。在 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 的默认实现中,此属性始终返回 false。</returns>
  2126. </member>
  2127. <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#ICollection#SyncRoot">
  2128. <summary>获取可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。</summary>
  2129. <returns>可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。在 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 的默认实现中,此属性始终返回当前实例。</returns>
  2130. </member>
  2131. <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#IEnumerable#GetEnumerator">
  2132. <summary>返回一个循环访问集合的枚举器。</summary>
  2133. <returns>可用于循环访问集合的 <see cref="T:System.Collections.IEnumerator" />。</returns>
  2134. </member>
  2135. <member name="T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator">
  2136. <summary>枚举 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 的元素。</summary>
  2137. </member>
  2138. <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.Current">
  2139. <summary>获取枚举数当前位置的元素。</summary>
  2140. <returns>
  2141. <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 中位于该枚举数当前位置的元素。</returns>
  2142. </member>
  2143. <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.Dispose">
  2144. <summary>释放由 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator" /> 使用的所有资源。</summary>
  2145. </member>
  2146. <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.MoveNext">
  2147. <summary>使枚举数前进到 <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection" /> 的下一个元素。</summary>
  2148. <returns>如果枚举数成功地推进到下一个元素,则为 true;如果枚举数越过集合的结尾,则为 false。</returns>
  2149. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  2150. </member>
  2151. <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Current">
  2152. <summary>获取枚举数当前位置的元素。</summary>
  2153. <returns>集合中位于枚举数当前位置的元素。</returns>
  2154. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  2155. </member>
  2156. <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Reset">
  2157. <summary>将枚举数设置为其初始位置,该位置位于集合中第一个元素之前。</summary>
  2158. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  2159. </member>
  2160. <member name="T:System.Collections.Generic.SortedDictionary`2.ValueCollection">
  2161. <summary>表示 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中值的集合。无法继承此类</summary>
  2162. </member>
  2163. <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.#ctor(System.Collections.Generic.SortedDictionary{`0,`1})">
  2164. <summary>初始化 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 类的新实例,该实例反映指定的 <see cref="T:System.Collections.Generic.SortedDictionary`2" /> 中的值。</summary>
  2165. <param name="dictionary">
  2166. <see cref="T:System.Collections.Generic.SortedDictionary`2" />,其值反映在新的 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 中。</param>
  2167. <exception cref="T:System.ArgumentNullException">
  2168. <paramref name="dictionary" /> 为 null。</exception>
  2169. </member>
  2170. <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.CopyTo(`1[],System.Int32)">
  2171. <summary>从指定的数组索引开始,将 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 元素复制到现有的一维数组中。</summary>
  2172. <param name="array">一维数组,它是从 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 中复制的元素的目标。该数组的索引必须从零开始。</param>
  2173. <param name="index">
  2174. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  2175. <exception cref="T:System.ArgumentNullException">
  2176. <paramref name="array" /> 为 null。</exception>
  2177. <exception cref="T:System.ArgumentOutOfRangeException">
  2178. <paramref name="index" /> 小于 0。</exception>
  2179. <exception cref="T:System.ArgumentException">源 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 中的元素数目大于从 <paramref name="index" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。</exception>
  2180. </member>
  2181. <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.Count">
  2182. <summary>获取 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 中包含的元素数。</summary>
  2183. <returns>
  2184. <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 中包含的元素个数。</returns>
  2185. </member>
  2186. <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.GetEnumerator">
  2187. <summary>返回循环访问 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 的枚举数。</summary>
  2188. <returns>用于 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 的 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator" /> 结构。</returns>
  2189. </member>
  2190. <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Add(`1)">
  2191. <summary>将某项添加到 <see cref="T:System.Collections.Generic.ICollection`1" /> 中。此实现始终引发 <see cref="T:System.NotSupportedException" />。</summary>
  2192. <param name="item">要添加到 <see cref="T:System.Collections.Generic.ICollection`1" /> 的对象。</param>
  2193. <exception cref="T:System.NotSupportedException">始终被引发;该集合为只读。</exception>
  2194. </member>
  2195. <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Clear">
  2196. <summary>从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中移除所有项。此实现始终引发 <see cref="T:System.NotSupportedException" />。</summary>
  2197. <exception cref="T:System.NotSupportedException">始终被引发;该集合为只读。</exception>
  2198. </member>
  2199. <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Contains(`1)">
  2200. <summary>确定 <see cref="T:System.Collections.Generic.ICollection`1" /> 是否包含指定值。</summary>
  2201. <returns>如果在 <see cref="T:System.Collections.Generic.ICollection`1" /> 中找到 <paramref name="item" />,则为 true;否则为 false。</returns>
  2202. <param name="item">要在 <see cref="T:System.Collections.Generic.ICollection`1" /> 中定位的对象。</param>
  2203. </member>
  2204. <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#IsReadOnly">
  2205. <summary>获取一个值,该值指示 <see cref="T:System.Collections.Generic.ICollection`1" /> 是否为只读。</summary>
  2206. <returns>如果 <see cref="T:System.Collections.Generic.ICollection`1" /> 为只读,则为 true;否则为 false。在 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 的默认实现中,此属性始终返回 false。</returns>
  2207. </member>
  2208. <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Remove(`1)">
  2209. <summary>从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中移除特定对象的第一个匹配项。此实现始终引发 <see cref="T:System.NotSupportedException" />。</summary>
  2210. <returns>如果已从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中成功移除了 <paramref name="item" />,则为 true;否则为 false。如果在 <see cref="T:System.Collections.Generic.ICollection`1" /> 中没有找到 <paramref name="item" />,此方法也会返回 false。</returns>
  2211. <param name="item">要从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中移除的对象。</param>
  2212. <exception cref="T:System.NotSupportedException">始终被引发;该集合为只读。</exception>
  2213. </member>
  2214. <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  2215. <summary>从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中移除特定对象的第一个匹配项。此实现始终引发 <see cref="T:System.NotSupportedException" />。</summary>
  2216. <returns>如果已从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中成功移除了 <paramref name="item" />,则为 true;否则为 false。如果在 <see cref="T:System.Collections.Generic.ICollection`1" /> 中没有找到 <paramref name="item" />,此方法也会返回 false。</returns>
  2217. <exception cref="T:System.NotSupportedException">始终被引发;该集合为只读。</exception>
  2218. </member>
  2219. <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  2220. <summary>从特定的数组索引开始,将 <see cref="T:System.Collections.ICollection" /> 的元素复制到一个数组中。</summary>
  2221. <param name="array">一维数组,它是从 <see cref="T:System.Collections.ICollection" /> 中复制的元素的目标。该数组的索引必须从零开始。</param>
  2222. <param name="index">
  2223. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  2224. <exception cref="T:System.ArgumentNullException">
  2225. <paramref name="array" /> 为 null。</exception>
  2226. <exception cref="T:System.ArgumentOutOfRangeException">
  2227. <paramref name="index" /> 小于 0。</exception>
  2228. <exception cref="T:System.ArgumentException">
  2229. <paramref name="array" /> 是多维的。- 或 -<paramref name="array" /> 没有从零开始的索引。- 或 -源 <see cref="T:System.Collections.ICollection" /> 中的元素数目大于从 <paramref name="index" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。- 或 -源 <see cref="T:System.Collections.ICollection" /> 的类型无法自动转换为目标 <paramref name="array" /> 的类型。</exception>
  2230. </member>
  2231. <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#ICollection#IsSynchronized">
  2232. <summary>获取一个值,该值指示是否同步对 <see cref="T:System.Collections.ICollection" /> 的访问(线程安全)。</summary>
  2233. <returns>如果对 <see cref="T:System.Collections.ICollection" /> 的访问是同步的(线程安全),则为 true;否则为 false。在 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 的默认实现中,此属性始终返回 false。</returns>
  2234. </member>
  2235. <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#ICollection#SyncRoot">
  2236. <summary>获取可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。</summary>
  2237. <returns>可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。在 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 的默认实现中,此属性始终返回当前实例。</returns>
  2238. </member>
  2239. <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#IEnumerable#GetEnumerator">
  2240. <summary>返回一个循环访问集合的枚举器。</summary>
  2241. <returns>可用于循环访问集合的 <see cref="T:System.Collections.IEnumerator" />。</returns>
  2242. </member>
  2243. <member name="T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator">
  2244. <summary>枚举 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 的元素。</summary>
  2245. </member>
  2246. <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.Current">
  2247. <summary>获取枚举数当前位置的元素。</summary>
  2248. <returns>
  2249. <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 中位于该枚举数当前位置的元素。</returns>
  2250. </member>
  2251. <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.Dispose">
  2252. <summary>释放由 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator" /> 使用的所有资源。</summary>
  2253. </member>
  2254. <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.MoveNext">
  2255. <summary>使枚举数前进到 <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection" /> 的下一个元素。</summary>
  2256. <returns>如果枚举数成功地推进到下一个元素,则为 true;如果枚举数越过集合的结尾,则为 false。</returns>
  2257. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  2258. </member>
  2259. <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Current">
  2260. <summary>获取枚举数当前位置的元素。</summary>
  2261. <returns>集合中位于枚举数当前位置的元素。</returns>
  2262. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  2263. </member>
  2264. <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Reset">
  2265. <summary>将枚举数设置为其初始位置,该位置位于集合中第一个元素之前。</summary>
  2266. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  2267. </member>
  2268. <member name="T:System.Collections.Generic.SortedList`2">
  2269. <summary>表示根据键进行排序的键/值对的集合,而键基于的是相关的 <see cref="T:System.Collections.Generic.IComparer`1" /> 实现。</summary>
  2270. <typeparam name="TKey">集合中的键的类型。</typeparam>
  2271. <typeparam name="TValue">集合中值的类型。</typeparam>
  2272. </member>
  2273. <member name="M:System.Collections.Generic.SortedList`2.#ctor">
  2274. <summary>初始化 <see cref="T:System.Collections.Generic.SortedList`2" /> 类的新实例,该示例为空且具有默认的初始容量,并使用默认的 <see cref="T:System.Collections.Generic.IComparer`1" />。</summary>
  2275. </member>
  2276. <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IComparer{`0})">
  2277. <summary>初始化 <see cref="T:System.Collections.Generic.SortedList`2" /> 类的新实例,该实例为空且具有默认的初始容量,并使用指定的 <see cref="T:System.Collections.Generic.IComparer`1" />。</summary>
  2278. <param name="comparer">在比较键时要使用的 <see cref="T:System.Collections.Generic.IComparer`1" /> 实现。- 或 -为 null,则为这类键使用默认的 <see cref="T:System.Collections.Generic.Comparer`1" />。</param>
  2279. </member>
  2280. <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})">
  2281. <summary>初始化 <see cref="T:System.Collections.Generic.SortedList`2" /> 类的新实例,该实例包含从指定的 <see cref="T:System.Collections.Generic.IDictionary`2" /> 中复制的元素,其容量足以容纳所复制的元素数并使用默认的 <see cref="T:System.Collections.Generic.IComparer`1" />。</summary>
  2282. <param name="dictionary">
  2283. <see cref="T:System.Collections.Generic.IDictionary`2" />,其元素被复制到新的 <see cref="T:System.Collections.Generic.SortedList`2" /> 中。</param>
  2284. <exception cref="T:System.ArgumentNullException">
  2285. <paramref name="dictionary" /> 为 null。</exception>
  2286. <exception cref="T:System.ArgumentException">
  2287. <paramref name="dictionary" /> 包含一个或多个重复键。</exception>
  2288. </member>
  2289. <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IComparer{`0})">
  2290. <summary>初始化 <see cref="T:System.Collections.Generic.SortedList`2" /> 类的新实例,该实例包含从指定的 <see cref="T:System.Collections.Generic.IDictionary`2" /> 中复制的元素,其容量足以容纳所复制的元素数并使用指定的 <see cref="T:System.Collections.Generic.IComparer`1" />。</summary>
  2291. <param name="dictionary">
  2292. <see cref="T:System.Collections.Generic.IDictionary`2" />,其元素被复制到新的 <see cref="T:System.Collections.Generic.SortedList`2" /> 中。</param>
  2293. <param name="comparer">在比较键时要使用的 <see cref="T:System.Collections.Generic.IComparer`1" /> 实现。- 或 -为 null,则为这类键使用默认的 <see cref="T:System.Collections.Generic.Comparer`1" />。</param>
  2294. <exception cref="T:System.ArgumentNullException">
  2295. <paramref name="dictionary" /> 为 null。</exception>
  2296. <exception cref="T:System.ArgumentException">
  2297. <paramref name="dictionary" /> 包含一个或多个重复键。</exception>
  2298. </member>
  2299. <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Int32)">
  2300. <summary>初始化 <see cref="T:System.Collections.Generic.SortedList`2" /> 类的新实例,该实例为空且具有指定的初始容量,并使用默认的 <see cref="T:System.Collections.Generic.IComparer`1" />。</summary>
  2301. <param name="capacity">
  2302. <see cref="T:System.Collections.Generic.SortedList`2" /> 可包含的初始元素数。</param>
  2303. <exception cref="T:System.ArgumentOutOfRangeException">
  2304. <paramref name="capacity" /> 小于零。</exception>
  2305. </member>
  2306. <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Int32,System.Collections.Generic.IComparer{`0})">
  2307. <summary>初始化 <see cref="T:System.Collections.Generic.SortedList`2" /> 类的新实例,该实例为空且具有指定的初始容量,并使用指定的 <see cref="T:System.Collections.Generic.IComparer`1" />。</summary>
  2308. <param name="capacity">
  2309. <see cref="T:System.Collections.Generic.SortedList`2" /> 可包含的初始元素数。</param>
  2310. <param name="comparer">在比较键时要使用的 <see cref="T:System.Collections.Generic.IComparer`1" /> 实现。- 或 -为 null,则为这类键使用默认的 <see cref="T:System.Collections.Generic.Comparer`1" />。</param>
  2311. <exception cref="T:System.ArgumentOutOfRangeException">
  2312. <paramref name="capacity" /> 小于零。</exception>
  2313. </member>
  2314. <member name="M:System.Collections.Generic.SortedList`2.Add(`0,`1)">
  2315. <summary>将带有指定键和值的元素添加到 <see cref="T:System.Collections.Generic.SortedList`2" /> 中。</summary>
  2316. <param name="key">要添加的元素的键。</param>
  2317. <param name="value">要添加的元素的值。对于引用类型,该值可以为 null。</param>
  2318. <exception cref="T:System.ArgumentNullException">
  2319. <paramref name="key" /> 为 null。</exception>
  2320. <exception cref="T:System.ArgumentException">
  2321. <see cref="T:System.Collections.Generic.SortedList`2" /> 中已存在具有相同键的元素。</exception>
  2322. </member>
  2323. <member name="P:System.Collections.Generic.SortedList`2.Capacity">
  2324. <summary>获取或设置 <see cref="T:System.Collections.Generic.SortedList`2" /> 可包含的元素数。</summary>
  2325. <returns>
  2326. <see cref="T:System.Collections.Generic.SortedList`2" /> 可包含的元素数。</returns>
  2327. <exception cref="T:System.ArgumentOutOfRangeException">
  2328. <see cref="P:System.Collections.Generic.SortedList`2.Capacity" /> 设置为小于 <see cref="P:System.Collections.Generic.SortedList`2.Count" /> 的值。</exception>
  2329. <exception cref="T:System.OutOfMemoryException">系统中没有足够的可用内存。</exception>
  2330. </member>
  2331. <member name="M:System.Collections.Generic.SortedList`2.Clear">
  2332. <summary>从 <see cref="T:System.Collections.Generic.SortedList`2" /> 中移除所有元素。</summary>
  2333. </member>
  2334. <member name="P:System.Collections.Generic.SortedList`2.Comparer">
  2335. <summary>获取该排序列表的 <see cref="T:System.Collections.Generic.IComparer`1" />。</summary>
  2336. <returns>当前 <see cref="T:System.Collections.Generic.SortedList`2" /> 的 <see cref="T:System.IComparable`1" />。</returns>
  2337. </member>
  2338. <member name="M:System.Collections.Generic.SortedList`2.ContainsKey(`0)">
  2339. <summary>确定 <see cref="T:System.Collections.Generic.SortedList`2" /> 是否包含特定的键。</summary>
  2340. <returns>true if the <see cref="T:System.Collections.Generic.SortedList`2" /> contains an element with the specified key; otherwise, false.</returns>
  2341. <param name="key">要在 <see cref="T:System.Collections.Generic.SortedList`2" /> 中定位的键。</param>
  2342. <exception cref="T:System.ArgumentNullException">
  2343. <paramref name="key" /> 为 null。</exception>
  2344. </member>
  2345. <member name="M:System.Collections.Generic.SortedList`2.ContainsValue(`1)">
  2346. <summary>确定 <see cref="T:System.Collections.Generic.SortedList`2" /> 是否包含特定值。</summary>
  2347. <returns>true if the <see cref="T:System.Collections.Generic.SortedList`2" /> contains an element with the specified value; otherwise, false.</returns>
  2348. <param name="value">要在 <see cref="T:System.Collections.Generic.SortedList`2" /> 中定位的值。对于引用类型,该值可以为 null。</param>
  2349. </member>
  2350. <member name="P:System.Collections.Generic.SortedList`2.Count">
  2351. <summary>获取包含在 <see cref="T:System.Collections.Generic.SortedList`2" /> 中的键/值对的数目。</summary>
  2352. <returns>包含在 <see cref="T:System.Collections.Generic.SortedList`2" /> 中的键/值对的数目。</returns>
  2353. </member>
  2354. <member name="M:System.Collections.Generic.SortedList`2.GetEnumerator">
  2355. <summary>返回一个循环访问 <see cref="T:System.Collections.Generic.SortedList`2" /> 的枚举数。</summary>
  2356. <returns>
  2357. <see cref="T:System.Collections.Generic.SortedList`2" /> 的类型为 <see cref="T:System.Collections.Generic.KeyValuePair`2" /> 的 <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
  2358. </member>
  2359. <member name="M:System.Collections.Generic.SortedList`2.IndexOfKey(`0)">
  2360. <summary>在整个 <see cref="T:System.Collections.Generic.SortedList`2" /> 中搜索指定键并返回从零开始的索引。</summary>
  2361. <returns>如果找到,则为整个 <see cref="T:System.Collections.Generic.SortedList`2" /> 中 <paramref name="key" /> 的从零开始的索引;否则为 -1。</returns>
  2362. <param name="key">要在 <see cref="T:System.Collections.Generic.SortedList`2" /> 中定位的键。</param>
  2363. <exception cref="T:System.ArgumentNullException">
  2364. <paramref name="key" /> 为 null。</exception>
  2365. </member>
  2366. <member name="M:System.Collections.Generic.SortedList`2.IndexOfValue(`1)">
  2367. <summary>在整个 <see cref="T:System.Collections.Generic.SortedList`2" /> 中搜索指定的值,并返回第一个匹配项的从零开始的索引。</summary>
  2368. <returns>如果在整个 <see cref="T:System.Collections.Generic.SortedList`2" /> 中找到 <paramref name="value" /> 的匹配项,则为第一个匹配项的从零开始的索引;否则为 -1。</returns>
  2369. <param name="value">要在 <see cref="T:System.Collections.Generic.SortedList`2" /> 中定位的值。对于引用类型,该值可以为 null。</param>
  2370. </member>
  2371. <member name="P:System.Collections.Generic.SortedList`2.Item(`0)">
  2372. <summary>获取或设置与指定的键关联的值。</summary>
  2373. <returns>与指定的键相关联的值。如果找不到指定的键,则 get 操作会引发 <see cref="T:System.Collections.Generic.KeyNotFoundException" />,而 set 操作会创建一个使用指定键的新元素。</returns>
  2374. <param name="key">要获取或设置其值的键。</param>
  2375. <exception cref="T:System.ArgumentNullException">
  2376. <paramref name="key" /> 为 null。</exception>
  2377. <exception cref="T:System.Collections.Generic.KeyNotFoundException">已检索该属性,并且集合中不存在 <paramref name="key" />。</exception>
  2378. </member>
  2379. <member name="P:System.Collections.Generic.SortedList`2.Keys">
  2380. <summary>获取一个按排序顺序包含 <see cref="T:System.Collections.Generic.SortedList`2" /> 中的键的集合。</summary>
  2381. <returns>包含 <see cref="T:System.Collections.Generic.SortedList`2" /> 中的键的 <see cref="T:System.Collections.Generic.IList`1" />。</returns>
  2382. </member>
  2383. <member name="M:System.Collections.Generic.SortedList`2.Remove(`0)">
  2384. <summary>从 <see cref="T:System.Collections.Generic.SortedList`2" /> 中移除包含指定键的元素。</summary>
  2385. <returns>如果该元素已成功移除,则为 true;否则为 false。This method also returns false if <paramref name="key" /> was not found in the original <see cref="T:System.Collections.Generic.SortedList`2" />.</returns>
  2386. <param name="key">要移除的元素的键。</param>
  2387. <exception cref="T:System.ArgumentNullException">
  2388. <paramref name="key" /> 为 null。</exception>
  2389. </member>
  2390. <member name="M:System.Collections.Generic.SortedList`2.RemoveAt(System.Int32)">
  2391. <summary>移除 <see cref="T:System.Collections.Generic.SortedList`2" /> 的指定索引处的元素。</summary>
  2392. <param name="index">要移除的元素的从零开始的索引。</param>
  2393. <exception cref="T:System.ArgumentOutOfRangeException">
  2394. <paramref name="index" /> 小于零。- 或 -<paramref name="index" /> 等于或大于 <see cref="P:System.Collections.Generic.SortedList`2.Count" />。</exception>
  2395. </member>
  2396. <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{T}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
  2397. <summary>向 <see cref="T:System.Collections.Generic.ICollection`1" /> 中添加键/值对。</summary>
  2398. <param name="keyValuePair">要添加到 <see cref="T:System.Collections.Generic.ICollection`1" /> 的 <see cref="T:System.Collections.Generic.KeyValuePair`2" />。</param>
  2399. </member>
  2400. <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{T}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
  2401. <summary>确定 <see cref="T:System.Collections.Generic.ICollection`1" /> 是否包含特定元素。</summary>
  2402. <returns>true if <paramref name="keyValuePair" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, false.</returns>
  2403. <param name="keyValuePair">要在 <see cref="T:System.Collections.Generic.ICollection`1" /> 中定位的 <see cref="T:System.Collections.Generic.KeyValuePair`2" />。</param>
  2404. </member>
  2405. <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{T}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
  2406. <summary>从特定的 <see cref="T:System.Array" /> 索引开始,将 <see cref="T:System.Collections.Generic.ICollection`1" /> 的元素复制到一个 <see cref="T:System.Array" /> 中。</summary>
  2407. <param name="array">作为从 <see cref="T:System.Collections.Generic.ICollection`1" /> 复制的元素的目标位置的一维 <see cref="T:System.Array" />。<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  2408. <param name="arrayIndex">
  2409. <paramref name="array" /> 中从零开始的索引,将在此处开始复制。</param>
  2410. <exception cref="T:System.ArgumentNullException">
  2411. <paramref name="array" /> 为 null。 </exception>
  2412. <exception cref="T:System.ArgumentOutOfRangeException">
  2413. <paramref name="arrayIndex" /> 小于零。</exception>
  2414. <exception cref="T:System.ArgumentException">源 <see cref="T:System.Collections.Generic.ICollection`1" /> 中的元素数目大于从 <paramref name="arrayIndex" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。</exception>
  2415. </member>
  2416. <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{T}#IsReadOnly">
  2417. <summary>获取一个值,该值指示 <see cref="T:System.Collections.Generic.ICollection`1" /> 是否为只读。</summary>
  2418. <returns>如果 <see cref="T:System.Collections.Generic.ICollection`1" /> 为只读,则为 true;否则为 false。在 <see cref="T:System.Collections.Generic.SortedList`2" /> 的默认实现中,此属性始终返回 false。</returns>
  2419. </member>
  2420. <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{T}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
  2421. <summary>从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中移除特定键/值对的第一个匹配项。</summary>
  2422. <returns>如果已从 <see cref="T:System.Collections.Generic.ICollection`1" /> 中成功移除 <paramref name="keyValuePair" />,则为 true;否则为 false。This method also returns false if <paramref name="keyValuePair" /> was not found in the original <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
  2423. <param name="keyValuePair">要从 <see cref="T:System.Collections.Generic.ICollection`1" /> 移除的 <see cref="T:System.Collections.Generic.KeyValuePair`2" />。</param>
  2424. </member>
  2425. <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
  2426. <summary>获取包含 <see cref="T:System.Collections.Generic.IDictionary`2" /> 的键的 <see cref="T:System.Collections.Generic.ICollection`1" />。</summary>
  2427. <returns>一个 <see cref="T:System.Collections.Generic.ICollection`1" />,它包含 <see cref="T:System.Collections.Generic.IDictionary`2" /> 的键。</returns>
  2428. </member>
  2429. <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
  2430. <summary>获取包含 <see cref="T:System.Collections.Generic.IDictionary`2" /> 中的值的 <see cref="T:System.Collections.Generic.ICollection`1" />。</summary>
  2431. <returns>一个 <see cref="T:System.Collections.Generic.ICollection`1" />,它包含 <see cref="T:System.Collections.Generic.IDictionary`2" /> 中的值。</returns>
  2432. </member>
  2433. <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  2434. <summary>返回循环访问集合的枚举数。</summary>
  2435. <returns>一个 <see cref="T:System.Collections.Generic.IEnumerator`1" />,可用于循环访问集合。</returns>
  2436. </member>
  2437. <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Keys">
  2438. <summary>获取包含只读字典中的键的可枚举集合。</summary>
  2439. <returns>包含只读字典中的键的可枚举集合。</returns>
  2440. </member>
  2441. <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Values">
  2442. <summary>获取包含只读字典中的值的可枚举集合。</summary>
  2443. <returns>包含只读字典中的值的可枚举集合。</returns>
  2444. </member>
  2445. <member name="M:System.Collections.Generic.SortedList`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  2446. <summary>从特定的 <see cref="T:System.Array" /> 索引开始,将 <see cref="T:System.Collections.ICollection" /> 的元素复制到一个 <see cref="T:System.Array" /> 中。</summary>
  2447. <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />.<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  2448. <param name="arrayIndex">
  2449. <paramref name="array" /> 中从零开始的索引,将在此处开始复制。</param>
  2450. <exception cref="T:System.ArgumentNullException">
  2451. <paramref name="array" /> 为 null。</exception>
  2452. <exception cref="T:System.ArgumentOutOfRangeException">
  2453. <paramref name="arrayIndex" /> 小于零。</exception>
  2454. <exception cref="T:System.ArgumentException">
  2455. <paramref name="array" /> 是多维的。- 或 -<paramref name="array" /> 没有从零开始的索引。- 或 -源 <see cref="T:System.Collections.ICollection" /> 中的元素数目大于从 <paramref name="arrayIndex" /> 到目标 <paramref name="array" /> 末尾之间的可用空间。- 或 -源 <see cref="T:System.Collections.ICollection" /> 的类型无法自动转换为目标 <paramref name="array" /> 的类型。</exception>
  2456. </member>
  2457. <member name="P:System.Collections.Generic.SortedList`2.System#Collections#ICollection#IsSynchronized">
  2458. <summary>获取一个值,该值指示是否同步对 <see cref="T:System.Collections.ICollection" /> 的访问(线程安全)。</summary>
  2459. <returns>true if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, false.在 <see cref="T:System.Collections.Generic.SortedList`2" /> 的默认实现中,此属性始终返回 false。</returns>
  2460. </member>
  2461. <member name="P:System.Collections.Generic.SortedList`2.System#Collections#ICollection#SyncRoot">
  2462. <summary>获取一个可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。</summary>
  2463. <returns>一个可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。在 <see cref="T:System.Collections.Generic.SortedList`2" /> 的默认实现中,此属性始终返回当前实例。</returns>
  2464. </member>
  2465. <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
  2466. <summary>使用所提供的键和值向 <see cref="T:System.Collections.IDictionary" /> 中添加一个元素。</summary>
  2467. <param name="key">用作要添加的元素的键的 <see cref="T:System.Object" />。</param>
  2468. <param name="value">用作要添加的元素的值的 <see cref="T:System.Object" />。</param>
  2469. <exception cref="T:System.ArgumentNullException">
  2470. <paramref name="key" /> 为 null。</exception>
  2471. <exception cref="T:System.ArgumentException">
  2472. <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.IDictionary" />.- 或 -<paramref name="value" /> 属于不能分配给 <see cref="T:System.Collections.IDictionary" /> 的值类型 <paramref name="TValue" /> 的类型。- 或 -<see cref="T:System.Collections.IDictionary" /> 中已存在具有相同键的元素。</exception>
  2473. </member>
  2474. <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Contains(System.Object)">
  2475. <summary>确定 <see cref="T:System.Collections.IDictionary" /> 是否包含具有指定键的元素。</summary>
  2476. <returns>true if the <see cref="T:System.Collections.IDictionary" /> contains an element with the key; otherwise, false.</returns>
  2477. <param name="key">要在 <see cref="T:System.Collections.IDictionary" /> 中定位的键。</param>
  2478. <exception cref="T:System.ArgumentNullException">
  2479. <paramref name="key" /> 为 null。</exception>
  2480. </member>
  2481. <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#GetEnumerator">
  2482. <summary>返回 <see cref="T:System.Collections.IDictionary" /> 的 <see cref="T:System.Collections.IDictionaryEnumerator" />。</summary>
  2483. <returns>
  2484. <see cref="T:System.Collections.IDictionary" /> 的一个 <see cref="T:System.Collections.IDictionaryEnumerator" />。</returns>
  2485. </member>
  2486. <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#IsFixedSize">
  2487. <summary>获取一个值,该值指示 <see cref="T:System.Collections.IDictionary" /> 是否具有固定大小。</summary>
  2488. <returns>true if the <see cref="T:System.Collections.IDictionary" /> has a fixed size; otherwise, false.在 <see cref="T:System.Collections.Generic.SortedList`2" /> 的默认实现中,此属性始终返回 false。</returns>
  2489. </member>
  2490. <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#IsReadOnly">
  2491. <summary>获取一个值,该值指示 <see cref="T:System.Collections.IDictionary" /> 是否为只读。</summary>
  2492. <returns>true if the <see cref="T:System.Collections.IDictionary" /> is read-only; otherwise, false.在 <see cref="T:System.Collections.Generic.SortedList`2" /> 的默认实现中,此属性始终返回 false。</returns>
  2493. </member>
  2494. <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Item(System.Object)">
  2495. <summary>获取或设置具有指定键的元素。</summary>
  2496. <returns>The element with the specified key, or null if <paramref name="key" /> is not in the dictionary or <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.Generic.SortedList`2" />.</returns>
  2497. <param name="key">要获取或设置的元素的键。</param>
  2498. <exception cref="T:System.ArgumentNullException">
  2499. <paramref name="key" /> 为 null。</exception>
  2500. <exception cref="T:System.ArgumentException">A value is being assigned, and <paramref name="key" /> is of a type that is not assignable to the key type <paramref name="TKey" /> of the <see cref="T:System.Collections.Generic.SortedList`2" />.- 或 -A value is being assigned, and <paramref name="value" /> is of a type that is not assignable to the value type <paramref name="TValue" /> of the <see cref="T:System.Collections.Generic.SortedList`2" />.</exception>
  2501. </member>
  2502. <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Keys">
  2503. <summary>获取包含 <see cref="T:System.Collections.IDictionary" /> 的键的 <see cref="T:System.Collections.ICollection" />。</summary>
  2504. <returns>一个 <see cref="T:System.Collections.ICollection" />,它包含 <see cref="T:System.Collections.IDictionary" /> 的键。</returns>
  2505. </member>
  2506. <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Remove(System.Object)">
  2507. <summary>从 <see cref="T:System.Collections.IDictionary" /> 中移除包含指定键的元素。</summary>
  2508. <param name="key">要移除的元素的键。</param>
  2509. <exception cref="T:System.ArgumentNullException">
  2510. <paramref name="key" /> 为 null。</exception>
  2511. </member>
  2512. <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Values">
  2513. <summary>获取包含 <see cref="T:System.Collections.IDictionary" /> 中的值的 <see cref="T:System.Collections.ICollection" />。</summary>
  2514. <returns>一个 <see cref="T:System.Collections.ICollection" />,它包含 <see cref="T:System.Collections.IDictionary" /> 中的值。</returns>
  2515. </member>
  2516. <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IEnumerable#GetEnumerator">
  2517. <summary>返回循环访问集合的枚举数。</summary>
  2518. <returns>一个 <see cref="T:System.Collections.IEnumerator" />,可用于循环访问集合。</returns>
  2519. </member>
  2520. <member name="M:System.Collections.Generic.SortedList`2.TrimExcess">
  2521. <summary>如果元素数小于当前容量的 90%,将容量设置为 <see cref="T:System.Collections.Generic.SortedList`2" /> 中的实际元素数。</summary>
  2522. </member>
  2523. <member name="M:System.Collections.Generic.SortedList`2.TryGetValue(`0,`1@)">
  2524. <summary>获取与指定键关联的值。</summary>
  2525. <returns>true if the <see cref="T:System.Collections.Generic.SortedList`2" /> contains an element with the specified key; otherwise, false.</returns>
  2526. <param name="key">要获取其值的键。</param>
  2527. <param name="value">如果找到指定的键,此方法将返回与该键关联的值;否则返回 <paramref name="value" /> 参数类型的默认值。此参数未经初始化即被传递。</param>
  2528. <exception cref="T:System.ArgumentNullException">
  2529. <paramref name="key" /> 为 null。</exception>
  2530. </member>
  2531. <member name="P:System.Collections.Generic.SortedList`2.Values">
  2532. <summary>获取包含 <see cref="T:System.Collections.Generic.SortedList`2" /> 中的值的集合。</summary>
  2533. <returns>包含 <see cref="T:System.Collections.Generic.SortedList`2" /> 中的值的 <see cref="T:System.Collections.Generic.IList`1" />。</returns>
  2534. </member>
  2535. <member name="T:System.Collections.Generic.SortedSet`1">
  2536. <summary>表示按排序顺序维护的对象的集合。</summary>
  2537. <typeparam name="T">集内元素的类型。</typeparam>
  2538. </member>
  2539. <member name="M:System.Collections.Generic.SortedSet`1.#ctor">
  2540. <summary>初始化 <see cref="T:System.Collections.Generic.SortedSet`1" /> 类的新实例。</summary>
  2541. </member>
  2542. <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IComparer{`0})">
  2543. <summary>初始化使用指定比较器的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 类的新实例。</summary>
  2544. <param name="comparer">用于比较对象的默认比较器。 </param>
  2545. <exception cref="T:System.ArgumentNullException">
  2546. <paramref name="comparer" /> 为 null。</exception>
  2547. </member>
  2548. <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
  2549. <summary>初始化 <see cref="T:System.Collections.Generic.SortedSet`1" /> 类的新实例,该实例包含从指定的可枚举集合中复制的元素。</summary>
  2550. <param name="collection">要复制的可枚举集合。</param>
  2551. </member>
  2552. <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IComparer{`0})">
  2553. <summary>初始化 <see cref="T:System.Collections.Generic.SortedSet`1" /> 类的新实例,该实例包含从指定的可枚举集合中复制的元素并使用指定的比较器。</summary>
  2554. <param name="collection">要复制的可枚举集合。</param>
  2555. <param name="comparer">用于比较对象的默认比较器。 </param>
  2556. <exception cref="T:System.ArgumentNullException">
  2557. <paramref name="collection" /> 为 null。</exception>
  2558. </member>
  2559. <member name="M:System.Collections.Generic.SortedSet`1.Add(`0)">
  2560. <summary>向集内添加元素,并返回一个指示是否已成功添加元素的值。</summary>
  2561. <returns>true if <paramref name="item" /> is added to the set; otherwise, false.</returns>
  2562. <param name="item">要添加到集中的元素。</param>
  2563. </member>
  2564. <member name="M:System.Collections.Generic.SortedSet`1.Clear">
  2565. <summary>从集内移除所有元素。</summary>
  2566. </member>
  2567. <member name="P:System.Collections.Generic.SortedSet`1.Comparer">
  2568. <summary>获取用于确定 <see cref="T:System.Collections.Generic.SortedSet`1" /> 中的值是否相等的 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 对象。</summary>
  2569. <returns>用于确定 <see cref="T:System.Collections.Generic.SortedSet`1" /> 中的值是否相等的比较器。</returns>
  2570. </member>
  2571. <member name="M:System.Collections.Generic.SortedSet`1.Contains(`0)">
  2572. <summary>确定集是否包含特定元素。</summary>
  2573. <returns>如果集包含 <paramref name="item" />,则为 true;否则为 false。</returns>
  2574. <param name="item">要在集内定位的元素。</param>
  2575. </member>
  2576. <member name="M:System.Collections.Generic.SortedSet`1.CopyTo(`0[])">
  2577. <summary>将整个 <see cref="T:System.Collections.Generic.SortedSet`1" /> 复制到兼容的一维数组中(从目标数组的开头开始复制)。</summary>
  2578. <param name="array">一个一维数组,它是从 <see cref="T:System.Collections.Generic.SortedSet`1" /> 复制的元素的目标。</param>
  2579. <exception cref="T:System.ArgumentException">源 <see cref="T:System.Collections.Generic.SortedSet`1" /> 中的元素数大于目标数组可包含的元素数。 </exception>
  2580. <exception cref="T:System.ArgumentNullException">
  2581. <paramref name="array" /> 为 null。</exception>
  2582. </member>
  2583. <member name="M:System.Collections.Generic.SortedSet`1.CopyTo(`0[],System.Int32)">
  2584. <summary>将整个 <see cref="T:System.Collections.Generic.SortedSet`1" /> 复制到兼容的一维目标数组(从指定的数组索引处开始复制)。</summary>
  2585. <param name="array">一个一维数组,它是从 <see cref="T:System.Collections.Generic.SortedSet`1" /> 复制的元素的目标。该数组的索引必须从零开始。</param>
  2586. <param name="index">
  2587. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  2588. <exception cref="T:System.ArgumentException">源数组中的元素数大于从 <paramref name="index" /> 到目标数组末尾处的可用空间。</exception>
  2589. <exception cref="T:System.ArgumentNullException">
  2590. <paramref name="array" /> 为 null。</exception>
  2591. <exception cref="T:System.ArgumentOutOfRangeException">
  2592. <paramref name="index" /> 小于零。</exception>
  2593. </member>
  2594. <member name="M:System.Collections.Generic.SortedSet`1.CopyTo(`0[],System.Int32,System.Int32)">
  2595. <summary>将指定数量的元素从 <see cref="T:System.Collections.Generic.SortedSet`1" /> 复制到兼容的一维数组中(从指定的数组索引处开始复制)。</summary>
  2596. <param name="array">一个一维数组,它是从 <see cref="T:System.Collections.Generic.SortedSet`1" /> 复制的元素的目标。该数组的索引必须从零开始。</param>
  2597. <param name="index">
  2598. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  2599. <param name="count">要复制的元素数。</param>
  2600. <exception cref="T:System.ArgumentException">源数组中的元素数大于从 <paramref name="index" /> 到目标数组末尾处的可用空间。</exception>
  2601. <exception cref="T:System.ArgumentNullException">
  2602. <paramref name="array" /> 为 null。</exception>
  2603. <exception cref="T:System.ArgumentOutOfRangeException">
  2604. <paramref name="index" /> 小于零。- 或 -<paramref name="count" /> 小于零。</exception>
  2605. </member>
  2606. <member name="P:System.Collections.Generic.SortedSet`1.Count">
  2607. <summary>获取 <see cref="T:System.Collections.Generic.SortedSet`1" /> 中元素的数目。</summary>
  2608. <returns>
  2609. <see cref="T:System.Collections.Generic.SortedSet`1" /> 中元素的数目。</returns>
  2610. </member>
  2611. <member name="M:System.Collections.Generic.SortedSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0})">
  2612. <summary>从当前 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象中移除指定集合中的所有元素。</summary>
  2613. <param name="other">要从 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象中移除的项的集合。</param>
  2614. <exception cref="T:System.ArgumentNullException">
  2615. <paramref name="other" /> 为 null。</exception>
  2616. </member>
  2617. <member name="M:System.Collections.Generic.SortedSet`1.GetEnumerator">
  2618. <summary>返回循环访问 <see cref="T:System.Collections.Generic.SortedSet`1" /> 的枚举数。</summary>
  2619. <returns>返回一个按顺序循环访问 <see cref="T:System.Collections.Generic.SortedSet`1" /> 的枚举器。</returns>
  2620. </member>
  2621. <member name="M:System.Collections.Generic.SortedSet`1.GetViewBetween(`0,`0)">
  2622. <summary>返回 <see cref="T:System.Collections.Generic.SortedSet`1" /> 中的子集的视图。</summary>
  2623. <returns>仅包含指定范围内的值的子集视图。</returns>
  2624. <param name="lowerValue">视图中所需的最小值。</param>
  2625. <param name="upperValue">视图中所需的最大值。</param>
  2626. <exception cref="T:System.ArgumentException">根据比较器,<paramref name="lowerValue" /> 大于 <paramref name="upperValue" />。</exception>
  2627. <exception cref="T:System.ArgumentOutOfRangeException">在视图上尝试的操作超出了 <paramref name="lowerValue" /> 和 <paramref name="upperValue" /> 指定的范围。</exception>
  2628. </member>
  2629. <member name="M:System.Collections.Generic.SortedSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0})">
  2630. <summary>修改当前的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象,使该对象仅包含指定集合中也存在的元素。</summary>
  2631. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象进行比较的集合。</param>
  2632. <exception cref="T:System.ArgumentNullException">
  2633. <paramref name="other" /> 为 null。</exception>
  2634. </member>
  2635. <member name="M:System.Collections.Generic.SortedSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
  2636. <summary>确定 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象是否为指定集合的真子集。</summary>
  2637. <returns>如果 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象是 <paramref name="other" /> 的真子集,则为 true;否则为 false。</returns>
  2638. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象进行比较的集合。</param>
  2639. <exception cref="T:System.ArgumentNullException">
  2640. <paramref name="other" /> 为 null。</exception>
  2641. </member>
  2642. <member name="M:System.Collections.Generic.SortedSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
  2643. <summary>确定 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象是否为指定集合的真超集。</summary>
  2644. <returns>如果 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象是 <paramref name="other" /> 的真超集,则为 true;否则为 false。</returns>
  2645. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象进行比较的集合。 </param>
  2646. <exception cref="T:System.ArgumentNullException">
  2647. <paramref name="other" /> 为 null。</exception>
  2648. </member>
  2649. <member name="M:System.Collections.Generic.SortedSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
  2650. <summary>确定 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象是否为指定集合的子集。</summary>
  2651. <returns>如果当前的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象为 <paramref name="other" /> 的子集,则为 true;否则为 false。</returns>
  2652. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象进行比较的集合。</param>
  2653. <exception cref="T:System.ArgumentNullException">
  2654. <paramref name="other" /> 为 null。</exception>
  2655. </member>
  2656. <member name="M:System.Collections.Generic.SortedSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
  2657. <summary>确定 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象是否为指定集合的超集。</summary>
  2658. <returns>如果 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象是 <paramref name="other" /> 的超集,则为 true;否则为 false。</returns>
  2659. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象进行比较的集合。 </param>
  2660. <exception cref="T:System.ArgumentNullException">
  2661. <paramref name="other" /> 为 null。</exception>
  2662. </member>
  2663. <member name="P:System.Collections.Generic.SortedSet`1.Max">
  2664. <summary>按照比较器的定义,获取 <see cref="T:System.Collections.Generic.SortedSet`1" /> 中的最大值。</summary>
  2665. <returns>集内的最大值。</returns>
  2666. </member>
  2667. <member name="P:System.Collections.Generic.SortedSet`1.Min">
  2668. <summary>按照比较器的定义,获取 <see cref="T:System.Collections.Generic.SortedSet`1" /> 中的最小值。</summary>
  2669. <returns>集内的最小值。</returns>
  2670. </member>
  2671. <member name="M:System.Collections.Generic.SortedSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
  2672. <summary>确定当前的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象和指定的集合是否共享常见元素。</summary>
  2673. <returns>如果 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象与 <paramref name="other" /> 至少共享一个公共元素,则为 true;否则为 false。</returns>
  2674. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象进行比较的集合。</param>
  2675. <exception cref="T:System.ArgumentNullException">
  2676. <paramref name="other" /> 为 null。</exception>
  2677. </member>
  2678. <member name="M:System.Collections.Generic.SortedSet`1.Remove(`0)">
  2679. <summary>从 <see cref="T:System.Collections.Generic.SortedSet`1" /> 中移除指定的项。</summary>
  2680. <returns>true if the element is found and successfully removed; otherwise, false.</returns>
  2681. <param name="item">要移除的元素。</param>
  2682. </member>
  2683. <member name="M:System.Collections.Generic.SortedSet`1.RemoveWhere(System.Predicate{`0})">
  2684. <summary>从 <see cref="T:System.Collections.Generic.SortedSet`1" /> 中移除与指定的谓词所定义的条件相匹配的所有元素。</summary>
  2685. <returns>已从 <see cref="T:System.Collections.Generic.SortedSet`1" /> 集合中移除的元素的数目。 </returns>
  2686. <param name="match">用于定义要移除的元素应满足的条件的委托。</param>
  2687. <exception cref="T:System.ArgumentNullException">
  2688. <paramref name="match" /> 为 null。</exception>
  2689. </member>
  2690. <member name="M:System.Collections.Generic.SortedSet`1.Reverse">
  2691. <summary>返回一个 <see cref="T:System.Collections.Generic.IEnumerable`1" />,它按相反的顺序循环访问 <see cref="T:System.Collections.Generic.SortedSet`1" />。</summary>
  2692. <returns>一个枚举器,它按相反的顺序循环访问 <see cref="T:System.Collections.Generic.SortedSet`1" />。</returns>
  2693. </member>
  2694. <member name="M:System.Collections.Generic.SortedSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
  2695. <summary>确定当前的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象与指定的集合中是否包含相同的元素。</summary>
  2696. <returns>如果当前的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象等于 <paramref name="other" />,则为 true;否则为 false。</returns>
  2697. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象进行比较的集合。</param>
  2698. <exception cref="T:System.ArgumentNullException">
  2699. <paramref name="other" /> 为 null。</exception>
  2700. </member>
  2701. <member name="M:System.Collections.Generic.SortedSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
  2702. <summary>修改当前的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象,使该对象仅包含当前对象或指定集合中存在的元素(但不可包含两者共有的元素)。</summary>
  2703. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象进行比较的集合。</param>
  2704. <exception cref="T:System.ArgumentNullException">
  2705. <paramref name="other" /> 为 null。</exception>
  2706. </member>
  2707. <member name="M:System.Collections.Generic.SortedSet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
  2708. <summary>向 <see cref="T:System.Collections.Generic.ICollection`1" /> 对象添加一个项。</summary>
  2709. <param name="item">要添加到 <see cref="T:System.Collections.Generic.ICollection`1" /> 对象中的对象。</param>
  2710. <exception cref="T:System.NotSupportedException">
  2711. <see cref="T:System.Collections.Generic.ICollection`1" /> 为只读。</exception>
  2712. </member>
  2713. <member name="P:System.Collections.Generic.SortedSet`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
  2714. <summary>获取一个值,该值指示 <see cref="T:System.Collections.ICollection" /> 是否为只读。</summary>
  2715. <returns>如果该集合为只读,则为 true;否则为 false。</returns>
  2716. </member>
  2717. <member name="M:System.Collections.Generic.SortedSet`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  2718. <summary>返回循环访问集合的枚举数。</summary>
  2719. <returns>用于循环访问集合的枚举数。</returns>
  2720. </member>
  2721. <member name="M:System.Collections.Generic.SortedSet`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  2722. <summary>将整个 <see cref="T:System.Collections.Generic.SortedSet`1" /> 复制到兼容的一维目标数组(从指定的数组索引处开始复制)。</summary>
  2723. <param name="array">一个一维数组,它是从 <see cref="T:System.Collections.Generic.SortedSet`1" /> 复制的元素的目标。该数组的索引必须从零开始。</param>
  2724. <param name="index">
  2725. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  2726. <exception cref="T:System.ArgumentException">源数组中的元素数大于从 <paramref name="index" /> 到目标数组末尾处的可用空间。 </exception>
  2727. <exception cref="T:System.ArgumentNullException">
  2728. <paramref name="array" /> 为 null。</exception>
  2729. <exception cref="T:System.ArgumentOutOfRangeException">
  2730. <paramref name="index" /> 小于零。</exception>
  2731. </member>
  2732. <member name="P:System.Collections.Generic.SortedSet`1.System#Collections#ICollection#IsSynchronized">
  2733. <summary>获取一个值,该值指示是否同步对 <see cref="T:System.Collections.ICollection" /> 的访问(线程安全)。</summary>
  2734. <returns>如果同步对 <see cref="T:System.Collections.ICollection" /> 的访问,则为 true;否则为 false。</returns>
  2735. </member>
  2736. <member name="P:System.Collections.Generic.SortedSet`1.System#Collections#ICollection#SyncRoot">
  2737. <summary>获取可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。</summary>
  2738. <returns>可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。在 <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection" /> 的默认实现中,此属性始终返回当前实例。</returns>
  2739. </member>
  2740. <member name="M:System.Collections.Generic.SortedSet`1.System#Collections#IEnumerable#GetEnumerator">
  2741. <summary>返回循环访问集合的枚举数。</summary>
  2742. <returns>用于循环访问集合的枚举数。</returns>
  2743. </member>
  2744. <member name="M:System.Collections.Generic.SortedSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0})">
  2745. <summary>修改当前的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象,使该对象包含当前对象或指定集合中存在的所有元素。</summary>
  2746. <param name="other">要与当前的 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象进行比较的集合。</param>
  2747. <exception cref="T:System.ArgumentNullException">
  2748. <paramref name="other" /> 为 null。</exception>
  2749. </member>
  2750. <member name="T:System.Collections.Generic.SortedSet`1.Enumerator">
  2751. <summary>枚举 <see cref="T:System.Collections.Generic.SortedSet`1" /> 对象的元素。</summary>
  2752. </member>
  2753. <member name="P:System.Collections.Generic.SortedSet`1.Enumerator.Current">
  2754. <summary>获取枚举数当前位置的元素。</summary>
  2755. <returns>集合中位于枚举数当前位置的元素。</returns>
  2756. </member>
  2757. <member name="M:System.Collections.Generic.SortedSet`1.Enumerator.Dispose">
  2758. <summary>释放由 <see cref="T:System.Collections.Generic.SortedSet`1.Enumerator" /> 使用的所有资源。</summary>
  2759. </member>
  2760. <member name="M:System.Collections.Generic.SortedSet`1.Enumerator.MoveNext">
  2761. <summary>将枚举器前进到 <see cref="T:System.Collections.Generic.SortedSet`1" /> 集合的下一个元素。</summary>
  2762. <returns>如果枚举数成功地推进到下一个元素,则为 true;如果枚举数越过集合的结尾,则为 false。</returns>
  2763. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  2764. </member>
  2765. <member name="P:System.Collections.Generic.SortedSet`1.Enumerator.System#Collections#IEnumerator#Current">
  2766. <summary>获取枚举数当前位置的元素。</summary>
  2767. <returns>集合中位于枚举数当前位置的元素。</returns>
  2768. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  2769. </member>
  2770. <member name="M:System.Collections.Generic.SortedSet`1.Enumerator.System#Collections#IEnumerator#Reset">
  2771. <summary>将枚举数设置为其初始位置,该位置位于集合中第一个元素之前。</summary>
  2772. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  2773. </member>
  2774. <member name="T:System.Collections.Generic.Stack`1">
  2775. <summary>表示可变大小的后进先出 (LIFO) 集合(对于相同指定类型的实例)。</summary>
  2776. <typeparam name="T">指定堆栈中元素的类型。</typeparam>
  2777. <filterpriority>1</filterpriority>
  2778. </member>
  2779. <member name="M:System.Collections.Generic.Stack`1.#ctor">
  2780. <summary>初始化 <see cref="T:System.Collections.Generic.Stack`1" /> 类的新实例,该实例为空并且具有默认初始容量。</summary>
  2781. </member>
  2782. <member name="M:System.Collections.Generic.Stack`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
  2783. <summary>初始化 <see cref="T:System.Collections.Generic.Stack`1" /> 类的新实例,该实例包含从指定集合复制的元素并且具有足够的容量来容纳所复制的元素。</summary>
  2784. <param name="collection">从中复制元素的集合。</param>
  2785. <exception cref="T:System.ArgumentNullException">
  2786. <paramref name="collection" /> is null.</exception>
  2787. </member>
  2788. <member name="M:System.Collections.Generic.Stack`1.#ctor(System.Int32)">
  2789. <summary>初始化 <see cref="T:System.Collections.Generic.Stack`1" /> 类的新实例,该实例为空,具有指定的初始容量或默认的初始容量(其中较大的一个)。</summary>
  2790. <param name="capacity">
  2791. <see cref="T:System.Collections.Generic.Stack`1" /> 可包含的初始元素数。</param>
  2792. <exception cref="T:System.ArgumentOutOfRangeException">
  2793. <paramref name="capacity" /> is less than zero.</exception>
  2794. </member>
  2795. <member name="M:System.Collections.Generic.Stack`1.Clear">
  2796. <summary>从 <see cref="T:System.Collections.Generic.Stack`1" /> 中移除所有对象。</summary>
  2797. <filterpriority>1</filterpriority>
  2798. </member>
  2799. <member name="M:System.Collections.Generic.Stack`1.Contains(`0)">
  2800. <summary>确定某元素是否在 <see cref="T:System.Collections.Generic.Stack`1" /> 中。</summary>
  2801. <returns>如果在 <see cref="T:System.Collections.Generic.Stack`1" /> 中找到了 <paramref name="item" />,则为 true;否则为 false。</returns>
  2802. <param name="item">要在 <see cref="T:System.Collections.Generic.Stack`1" /> 中定位的对象。对于引用类型,该值可以为 null。</param>
  2803. </member>
  2804. <member name="M:System.Collections.Generic.Stack`1.CopyTo(`0[],System.Int32)">
  2805. <summary>从特定的数组索引处开始,将 <see cref="T:System.Collections.Generic.Stack`1" /> 复制到现有一维 <see cref="T:System.Array" />。</summary>
  2806. <param name="array">一维 <see cref="T:System.Array" />,它是从 <see cref="T:System.Collections.Generic.Stack`1" /> 复制的元素的目标。<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  2807. <param name="arrayIndex">
  2808. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  2809. <exception cref="T:System.ArgumentNullException">
  2810. <paramref name="array" /> is null.</exception>
  2811. <exception cref="T:System.ArgumentOutOfRangeException">
  2812. <paramref name="arrayIndex" /> is less than zero.</exception>
  2813. <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>
  2814. </member>
  2815. <member name="P:System.Collections.Generic.Stack`1.Count">
  2816. <summary>获取 <see cref="T:System.Collections.Generic.Stack`1" /> 中包含的元素数。</summary>
  2817. <returns>
  2818. <see cref="T:System.Collections.Generic.Stack`1" /> 中包含的元素个数。</returns>
  2819. </member>
  2820. <member name="M:System.Collections.Generic.Stack`1.GetEnumerator">
  2821. <summary>返回用于 <see cref="T:System.Collections.Generic.Stack`1" /> 的枚举数。</summary>
  2822. <returns>用于 <see cref="T:System.Collections.Generic.Stack`1" /> 的 <see cref="T:System.Collections.Generic.Stack`1.Enumerator" />。</returns>
  2823. </member>
  2824. <member name="M:System.Collections.Generic.Stack`1.Peek">
  2825. <summary>返回 <see cref="T:System.Collections.Generic.Stack`1" /> 顶部的对象而无需移除它。</summary>
  2826. <returns>
  2827. <see cref="T:System.Collections.Generic.Stack`1" /> 顶部的对象。</returns>
  2828. <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Stack`1" /> is empty.</exception>
  2829. </member>
  2830. <member name="M:System.Collections.Generic.Stack`1.Pop">
  2831. <summary>移除并返回 <see cref="T:System.Collections.Generic.Stack`1" /> 顶部的对象。</summary>
  2832. <returns>从 <see cref="T:System.Collections.Generic.Stack`1" /> 顶部移除的对象。</returns>
  2833. <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Stack`1" /> is empty.</exception>
  2834. </member>
  2835. <member name="M:System.Collections.Generic.Stack`1.Push(`0)">
  2836. <summary>将对象插入 <see cref="T:System.Collections.Generic.Stack`1" /> 的顶部。</summary>
  2837. <param name="item">要推入到 <see cref="T:System.Collections.Generic.Stack`1" /> 中的对象。对于引用类型,该值可以为 null。</param>
  2838. </member>
  2839. <member name="M:System.Collections.Generic.Stack`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
  2840. <summary>返回一个循环访问集合的枚举器。</summary>
  2841. <returns>可用于循环访问集合的 <see cref="T:System.Collections.Generic.IEnumerator`1" />。</returns>
  2842. </member>
  2843. <member name="M:System.Collections.Generic.Stack`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  2844. <summary>从特定的 <see cref="T:System.Array" /> 索引处开始,将 <see cref="T:System.Collections.ICollection" /> 的元素复制到一个 <see cref="T:System.Array" /> 中。</summary>
  2845. <param name="array">一维 <see cref="T:System.Array" />,它是从 <see cref="T:System.Collections.ICollection" /> 复制的元素的目标。<see cref="T:System.Array" /> 必须具有从零开始的索引。</param>
  2846. <param name="arrayIndex">
  2847. <paramref name="array" /> 中从零开始的索引,从此索引处开始进行复制。</param>
  2848. <exception cref="T:System.ArgumentNullException">
  2849. <paramref name="array" /> is null.</exception>
  2850. <exception cref="T:System.ArgumentOutOfRangeException">
  2851. <paramref name="arrayIndex" /> is less than zero.</exception>
  2852. <exception cref="T:System.ArgumentException">
  2853. <paramref name="array" /> is multidimensional.-or-<paramref name="array" /> does not have zero-based indexing.-or-The number of elements in the source <see cref="T:System.Collections.ICollection" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.-or-The type of the source <see cref="T:System.Collections.ICollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
  2854. </member>
  2855. <member name="P:System.Collections.Generic.Stack`1.System#Collections#ICollection#IsSynchronized">
  2856. <summary>获取一个值,该值指示是否同步对 <see cref="T:System.Collections.ICollection" /> 的访问(线程安全)。</summary>
  2857. <returns>如果对 <see cref="T:System.Collections.ICollection" /> 的访问是同步的(线程安全),则为 true;否则为 false。在 <see cref="T:System.Collections.Generic.Stack`1" /> 的默认实现中,此属性始终返回 false。</returns>
  2858. </member>
  2859. <member name="P:System.Collections.Generic.Stack`1.System#Collections#ICollection#SyncRoot">
  2860. <summary>获取可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。</summary>
  2861. <returns>可用于同步对 <see cref="T:System.Collections.ICollection" /> 的访问的对象。在 <see cref="T:System.Collections.Generic.Stack`1" /> 的默认实现中,此属性始终返回当前实例。</returns>
  2862. </member>
  2863. <member name="M:System.Collections.Generic.Stack`1.System#Collections#IEnumerable#GetEnumerator">
  2864. <summary>返回循环访问集合的枚举数。</summary>
  2865. <returns>可用于循环访问集合的 <see cref="T:System.Collections.IEnumerator" />。</returns>
  2866. </member>
  2867. <member name="M:System.Collections.Generic.Stack`1.ToArray">
  2868. <summary>将 <see cref="T:System.Collections.Generic.Stack`1" /> 复制到新数组。</summary>
  2869. <returns>一个新数组,包含 <see cref="T:System.Collections.Generic.Stack`1" /> 的元素的副本。</returns>
  2870. </member>
  2871. <member name="M:System.Collections.Generic.Stack`1.TrimExcess">
  2872. <summary>如果元素数小于当前容量的 90%,将容量设置为 <see cref="T:System.Collections.Generic.Stack`1" /> 中的实际元素数。</summary>
  2873. </member>
  2874. <member name="T:System.Collections.Generic.Stack`1.Enumerator">
  2875. <summary>枚举 <see cref="T:System.Collections.Generic.Stack`1" /> 的元素。</summary>
  2876. </member>
  2877. <member name="P:System.Collections.Generic.Stack`1.Enumerator.Current">
  2878. <summary>获取枚举数当前位置的元素。</summary>
  2879. <returns>
  2880. <see cref="T:System.Collections.Generic.Stack`1" /> 中位于枚举数当前位置的元素。</returns>
  2881. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  2882. </member>
  2883. <member name="M:System.Collections.Generic.Stack`1.Enumerator.Dispose">
  2884. <summary>释放由 <see cref="T:System.Collections.Generic.Stack`1.Enumerator" /> 使用的所有资源。</summary>
  2885. </member>
  2886. <member name="M:System.Collections.Generic.Stack`1.Enumerator.MoveNext">
  2887. <summary>使枚举数前进到 <see cref="T:System.Collections.Generic.Stack`1" /> 的下一个元素。</summary>
  2888. <returns>如果枚举数成功地推进到下一个元素,则为 true;如果枚举数越过集合的结尾,则为 false。</returns>
  2889. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  2890. </member>
  2891. <member name="P:System.Collections.Generic.Stack`1.Enumerator.System#Collections#IEnumerator#Current">
  2892. <summary>获取枚举数当前位置的元素。</summary>
  2893. <returns>集合中位于枚举数当前位置的元素。</returns>
  2894. <exception cref="T:System.InvalidOperationException">枚举数定位在该集合的第一个元素之前或最后一个元素之后。</exception>
  2895. </member>
  2896. <member name="M:System.Collections.Generic.Stack`1.Enumerator.System#Collections#IEnumerator#Reset">
  2897. <summary>将枚举数设置为其初始位置,该位置位于集合中第一个元素之前。此类不能被继承。</summary>
  2898. <exception cref="T:System.InvalidOperationException">在创建了枚举数后集合被修改了。</exception>
  2899. </member>
  2900. </members>
  2901. </doc>