C# ArrayList 클래스
C# ArrayList 클래스
2019년 6월 20일
// 네임스페이스 선언
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);