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.
 
 
 
 
 
 

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