C# 클래스 LitDev.LDQueue

파일 보기 프로젝트 열기: litdev1/LitDev

공개 메소드들

메소드 설명
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