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
为负数。
注解
增加计数时,将公开未初始化的数据。