C#通过foreach语句遍历arraylist源码演示

如下的代码是关于C#通过foreach语句遍历arraylist演示的代码。
using System;
using System.Collections;

namespace Client.Chapter_4___Program_Control
{
  public class ForEaches
  {
    static void Main(string[] args)
    {
      ArrayList a = new ArrayList(10);

      foreach (int x in a)
      {
        Console.WriteLine(x);
      }
    }
  }
}

C#通过foreach语句遍历arraylist源码演示

上一篇:C#反编译dll文件,修改其中汉字内容,再重新生成dll


下一篇:【开发工具】- Windows下多个jdk版本切换