foreach 문(2) – 예제
using System;
using System.Collections;
class TestForeach
{
public static void Main()
{
//간단한 컬렉션인 ArrayList 생성
ArrayList shoppingCart = new ArrayList();
shoppingCart.Add("핸드폰"); //컬렉션에 데이터 삽입
shoppingCart.Add("자동차");
shoppingCart.Add("컴퓨터");
foreach(string myItem in shoppingCart){ // 컬렉션 탐색
Console.WriteLine(myItem);
}
}
}