码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2019-07-25 09:25:32      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:lis   foreach   class   col   chapter   name   ram   control   for   

如下的代码是关于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源码演示

标签:lis   foreach   class   col   chapter   name   ram   control   for   

原文地址:https://blog.51cto.com/14393435/2423271

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!