C#通过foreach语句遍历arraylist源码演示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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源码演示的主要内容,如果未能解决你的问题,请参考以下文章