ConcurrentQueue<T> Konstruktory

Definicja

Inicjuje nowe wystąpienie klasy ConcurrentQueue<T>.

Przeciążenia

ConcurrentQueue<T>()

Inicjuje nowe wystąpienie klasy ConcurrentQueue<T>.

ConcurrentQueue<T>(IEnumerable<T>)

Inicjuje ConcurrentQueue<T> nowe wystąpienie klasy zawierające elementy skopiowane z określonej kolekcji.

ConcurrentQueue<T>()

Źródło:
ConcurrentQueue.cs
Źródło:
ConcurrentQueue.cs
Źródło:
ConcurrentQueue.cs

Inicjuje nowe wystąpienie klasy ConcurrentQueue<T>.

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

Zobacz też

Dotyczy

ConcurrentQueue<T>(IEnumerable<T>)

Źródło:
ConcurrentQueue.cs
Źródło:
ConcurrentQueue.cs
Źródło:
ConcurrentQueue.cs

Inicjuje ConcurrentQueue<T> nowe wystąpienie klasy zawierające elementy skopiowane z określonej kolekcji.

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

Parametry

collection
IEnumerable<T>

Kolekcja, której elementy są kopiowane do nowej ConcurrentQueue<T>kolekcji .

Wyjątki

Argument collection ma wartość null.

Zobacz też

Dotyczy