Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

คุณสมบัติ Array.IsFixedSize ของคลาสอาร์เรย์ทำอะไรใน C #


คุณสมบัติ IsFixedSize ของคลาส ArrayList ใช้เพื่อรับค่าที่ระบุว่า ArrayList มีขนาดคงที่หรือไม่

ต่อไปนี้เป็นตัวอย่างที่ระบุการใช้งานคุณสมบัติ isFixedSize -

ตัวอย่าง

using System;
using System.Collections;

class Demo {
   public static void Main() {
      ArrayList arrList = new ArrayList();

      Console.WriteLine("Adding some numbers:");
      arrList.Add(45);
      arrList.Add(78);

      Console.WriteLine(arrList.Count);

      Console.WriteLine("myArrayList.IsFixedSize = " + arrList.IsFixedSize);
    }
}

ผลลัพธ์

Adding some numbers:
2
myArrayList.IsFixedSize = False

ด้านบนเราได้เพิ่มรายการอาร์เรย์ -

ArrayList arrList = new ArrayList();

จากนั้นเราได้ตรวจสอบว่ามีขนาดคงที่หรือไม่ −

Console.WriteLine("myArrayList.IsFixedSize = " + arrList.IsFixedSize);