CollectionsMarshal.SetCount<T>(List<T>, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將的 List<T> 計數設定為指定的值。
public:
generic <typename T>
static void SetCount(System::Collections::Generic::List<T> ^ list, int count);
public static void SetCount<T> (System.Collections.Generic.List<T> list, int count);
static member SetCount : System.Collections.Generic.List<'T> * int -> unit
Public Shared Sub SetCount(Of T) (list As List(Of T), count As Integer)
類型參數
- T
清單中元素的類型。
參數
- list
- List<T>
要設定計數的清單。
- count
- Int32
要設定清單計數的值。
例外狀況
list
為 null
。
count
為負。
備註
增加計數時,會公開未初始化的數據。