ImmutableQueue.Dequeue<T>(IImmutableQueue<T>, T) 方法

定义

移除位于不可变队列开始处的项,并返回新队列。

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Immutable::IImmutableQueue<T> ^ Dequeue(System::Collections::Immutable::IImmutableQueue<T> ^ queue, [Runtime::InteropServices::Out] T % value);
public static System.Collections.Immutable.IImmutableQueue<T> Dequeue<T> (this System.Collections.Immutable.IImmutableQueue<T> queue, out T value);
static member Dequeue : System.Collections.Immutable.IImmutableQueue<'T> * 'T -> System.Collections.Immutable.IImmutableQueue<'T>
<Extension()>
Public Function Dequeue(Of T) (queue As IImmutableQueue(Of T), ByRef value As T) As IImmutableQueue(Of T)

类型参数

T

不可变队列中元素的类型。

参数

queue
IImmutableQueue<T>

要从中移除项的队列。

value
T

此方法返回时,将包含位于队列开始处的项。

返回

已移除项的新队列。

例外

堆栈为空。

适用于