Computer >> Máy Tính >  >> Lập trình >> C#

Thuộc tính Count của lớp ArrayList trong C # là gì?


Thuộc tính Count trong lớp ArrayList đếm số phần tử trong ArrayList.

Đầu tiên, thêm các phần tử vào ArrayList -

ArrayList arrList = new ArrayList();

arrList.Add(98);
arrList.Add(55);
arrList.Add(65);
arrList.Add(34);

Sau đó, lấy số lượng của danh sách mảng -

arrList.Count

Sau đây là mã để triển khai thuộc tính Count trong C # -

Ví dụ

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);

   }
}

Đầu ra

Count = 4