ConcurrentStack<T> コンストラクター

定義

オーバーロード

ConcurrentStack<T>()

ConcurrentStack<T> クラスの新しいインスタンスを初期化します。

ConcurrentStack<T>(IEnumerable<T>)

指定したコレクションからコピーされた要素を格納する、ConcurrentStack<T> クラスの新しいインスタンスを初期化します。

ConcurrentStack<T>()

ソース:
ConcurrentStack.cs
ソース:
ConcurrentStack.cs
ソース:
ConcurrentStack.cs

ConcurrentStack<T> クラスの新しいインスタンスを初期化します。

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

こちらもご覧ください

適用対象

ConcurrentStack<T>(IEnumerable<T>)

ソース:
ConcurrentStack.cs
ソース:
ConcurrentStack.cs
ソース:
ConcurrentStack.cs

指定したコレクションからコピーされた要素を格納する、ConcurrentStack<T> クラスの新しいインスタンスを初期化します。

public:
 ConcurrentStack(System::Collections::Generic::IEnumerable<T> ^ collection);
public ConcurrentStack (System.Collections.Generic.IEnumerable<T> collection);
new System.Collections.Concurrent.ConcurrentStack<'T> : seq<'T> -> System.Collections.Concurrent.ConcurrentStack<'T>
Public Sub New (collection As IEnumerable(Of T))

パラメーター

collection
IEnumerable<T>

新しい ConcurrentStack<T> に要素がコピーされたコレクション。

例外

collection 引数が null です。

こちらもご覧ください

適用対象