c#中foreach语句遍历队列的实例代码

发布时间:2020-07-10编辑:脚本学堂
在c#中用foreach语句遍历队列(queue),主要学习下c#编程中foreach语句的用法,c#中system.collections实现对列遍历的例子。

c#中foreach语句遍历队列(queue)

代码:
 

复制代码 代码示例:
using System;
using System.Collections;
public class QueuesW3
{
  static void Main(string[] args)
  {
   Queue a = new Queue(10);
   int x = 0;
   a.Enqueue(x);
   x++;
   a.Enqueue(x);
   foreach (int y in a)
   {
    Console.WriteLine(y);
   }
   a.Dequeue();
   a.Clear();
  }
}