Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Removes and returns the object at the beginning of the Queue.
Namespace: System.Collections
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Overridable Function Dequeue As Object
public virtual Object Dequeue()
public:
virtual Object^ Dequeue()
abstract Dequeue : unit -> Object
override Dequeue : unit -> Object
public function Dequeue() : Object
Return Value
Type: System. . :: . .Object
The object that is removed from the beginning of the Queue.
Exceptions
Exception | Condition |
---|---|
InvalidOperationException | The Queue is empty. |
Remarks
This method is similar to the Peek method, but Peek does not modify the Queue.
null Nothing nullptr unit a null reference (Nothing in Visual Basic) can be added to the Queue as a value. To distinguish between a null value and the end of the Queue, check the Count property or catch the InvalidOperationException, which is thrown when the Queue is empty.
This method is an O(1) operation.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.