JsonExtensions.Dequeue<T>(List<T>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes first element of a queue.
public static T Dequeue<T> (this System.Collections.Generic.List<T> queue);
static member Dequeue : System.Collections.Generic.List<'T> -> 'T
<Extension()>
Public Function Dequeue(Of T) (queue As List(Of T)) As T
Type Parameters
- T
Element type.
Parameters
- queue
- List<T>
List from where to remove first element.
Returns
T
Element removed.