Beispiel #1
0
 static void Main(string[] args)
 {
     StringQueue myQueue = new StringQueue();
     myQueue.Enqueue("a");
     myQueue.Enqueue("b");
     Console.WriteLine(myQueue.Length);
 }
Beispiel #2
0
        static void Main(string[] args)
        {
            StringQueue myQueue = new StringQueue();

            myQueue.Enqueue("a");
            myQueue.Enqueue("b");
            Console.WriteLine(myQueue.Length);
        }