言語

DoubleCollection コンストラクター

定義

DoubleCollection クラスの新しいインスタンスを初期化します。

オーバーロード

名前 説明
DoubleCollection()

DoubleCollection クラスの新しいインスタンスを初期化します。

DoubleCollection(IEnumerable<Double>)

指定したDoubleCollection値のコレクションを使用して、Double クラスの新しいインスタンスを初期化します。

DoubleCollection(Int32)

指定した容量を使用して、 DoubleCollection クラスの新しいインスタンスを初期化するか、コレクションが最初に格納できる Double 値の数を初期化します。

DoubleCollection()

DoubleCollection クラスの新しいインスタンスを初期化します。

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

こちらもご覧ください

適用対象

DoubleCollection(IEnumerable<Double>)

指定したDoubleCollection値のコレクションを使用して、Double クラスの新しいインスタンスを初期化します。

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

パラメーター

collection
IEnumerable<Double>

Doubleを構成するDoubleCollection値のコレクション。

例外

collectionnullです。

適用対象

DoubleCollection(Int32)

指定した容量を使用して、 DoubleCollection クラスの新しいインスタンスを初期化するか、コレクションが最初に格納できる Double 値の数を初期化します。

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

パラメーター

capacity
Int32

コレクションが最初に格納できる Double 値の数。

適用対象