ImmutableInterlocked.Enqueue<T>(ImmutableQueue<T>, T) 方法

定义

以原子方式将某个元素排到队列的末尾。

public:
generic <typename T>
 static void Enqueue(System::Collections::Immutable::ImmutableQueue<T> ^ % location, T value);
public static void Enqueue<T> (ref System.Collections.Immutable.ImmutableQueue<T> location, T value);
static member Enqueue : ImmutableQueue * 'T -> unit
Public Shared Sub Enqueue(Of T) (ByRef location As ImmutableQueue(Of T), value As T)

类型参数

T

集合中包含的项的类型。

参数

location
ImmutableQueue<T>

以原子方式更新的变量或字段。

value
T

要排队的值。

适用于