C# Класс LitDev.LDQueue

Показать файл Открыть проект

Открытые методы

Метод Описание
Dequeue ( Primitive queueName ) : Primitive

Remove (and get) the value from the front of the specified queue.

Enqueue ( Primitive queueName, Primitive value ) : void

Adds a value to the end of the specified queue.

GetCount ( Primitive queueName ) : Primitive

Gets the count of items in the specified queue.

Описание методов

Dequeue() публичный статический Метод

Remove (and get) the value from the front of the specified queue.
public static Dequeue ( Primitive queueName ) : Primitive
queueName Primitive /// The name of the queue. ///
Результат Primitive

Enqueue() публичный статический Метод

Adds a value to the end of the specified queue.
public static Enqueue ( Primitive queueName, Primitive value ) : void
queueName Primitive /// The name of the queue. ///
value Primitive /// The value to enqueue. ///
Результат void

GetCount() публичный статический Метод

Gets the count of items in the specified queue.
public static GetCount ( Primitive queueName ) : Primitive
queueName Primitive /// The name of the queue. ///
Результат Primitive