VB.NET Language in a Nutshell

   
Queue.Enqueue Method

Class

System.Collections.Queue

Syntax

queuevariable .Enqueue(obj)

obj (required; Object)

The item to place in the queue

Return Value

None

Description

Places an object at the end of the queue

Rules at a Glance

Enqueue adds an item to the end of the queue and increases the Count property by 1.

   

Категории