ImmutableInterlocked.Enqueue<T>(ImmutableQueue<T>, T) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
以原子方式将某个元素排到队列的末尾。
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
要排队的值。