ArrayList 클래스의 Count 속성은 ArrayList의 요소 수를 계산합니다.
먼저 ArrayList에 요소를 추가하십시오 -
ArrayList arrList = new ArrayList(); arrList.Add(98); arrList.Add(55); arrList.Add(65); arrList.Add(34);
그런 다음 배열 목록의 개수를 가져옵니다. -
arrList.Count
다음은 C#에서 Count 속성을 구현하는 코드입니다 -
예
using System; using System.Collections; class Demo { public static void Main() { ArrayList arrList = new ArrayList(); arrList.Add(98); arrList.Add(55); arrList.Add(65); arrList.Add(34); Console.WriteLine("Count = " + arrList.Count); } }
출력
Count = 4