Int32Collection 构造函数

定义

初始化 Int32Collection 类的新实例。

重载

Int32Collection()

初始化 Int32Collection 类的新实例。

Int32Collection(IEnumerable<Int32>)

用指定的 Int32Collection 值的集合来初始化 Int32 类的新实例。

Int32Collection(Int32)

使用指定的容量或集合最初可存储的 Int32Collection 值的数目来初始化 Int32 类的新实例。

Int32Collection()

初始化 Int32Collection 类的新实例。

public:
 Int32Collection();
public Int32Collection ();
Public Sub New ()

适用于

Int32Collection(IEnumerable<Int32>)

用指定的 Int32Collection 值的集合来初始化 Int32 类的新实例。

public:
 Int32Collection(System::Collections::Generic::IEnumerable<int> ^ collection);
public Int32Collection (System.Collections.Generic.IEnumerable<int> collection);
new System.Windows.Media.Int32Collection : seq<int> -> System.Windows.Media.Int32Collection
Public Sub New (collection As IEnumerable(Of Integer))

参数

collection
IEnumerable<Int32>

构成 Int32Int32Collection 值的集合。

适用于

Int32Collection(Int32)

使用指定的容量或集合最初可存储的 Int32Collection 值的数目来初始化 Int32 类的新实例。

public:
 Int32Collection(int capacity);
public Int32Collection (int capacity);
new System.Windows.Media.Int32Collection : int -> System.Windows.Media.Int32Collection
Public Sub New (capacity As Integer)

参数

capacity
Int32

集合最初可存储的 Int32 值数。

适用于