Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#에서 ArrayList 클래스의 Count 속성은 무엇입니까?


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