Property and Method

Enqueue() 큐에 데이터를 저장함
Dequeue() 큐에서 데이터를 출력함

‘System.Collections’

using System.Collections.Generic;

Queue Declaration

Queue<string> queue = new Queue<string>();