// 네임스페이스 선언 using System.Collections; ArrayList a1 = new ArrayList();
요소 삽입
// 마지막 인덱스 a1.Add("Element");
요소 접근
// 0번 인덱스 Console.WriteLine(a1[0]);
요소 Count
Console.WriteLine(a1.Count);
버프애쉬의 블로그
// 네임스페이스 선언 using System.Collections; ArrayList a1 = new ArrayList();
요소 삽입
// 마지막 인덱스 a1.Add("Element");
요소 접근
// 0번 인덱스 Console.WriteLine(a1[0]);
요소 Count
Console.WriteLine(a1.Count);