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

คุณสมบัติ IsFixedSize ของคลาส Hashtable ใน C # คืออะไร


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

ต่อไปนี้คือตัวอย่างที่แสดงวิธีการทำงานกับคุณสมบัติ IsFixedSize

ตัวอย่าง

using System;
using System.Collections;
namespace Demo {
   class Program {
      static void Main(string[] args) {
         Hashtable ht = new Hashtable();
         ht.Add("D01", "Finance");
         ht.Add("D02", "HR");
         ht.Add("D03", "Operations");
         Console.WriteLine("IsFixedSize = " + ht.IsFixedSize);
         Console.ReadKey();
      }
   }
}

ผลลัพธ์

IsFixedSize = False

ด้านบนเราได้เพิ่มคอลเล็กชัน Hashtable แล้ว

Hashtable ht = new Hashtable();

หลังจากเพิ่มองค์ประกอบแล้ว เราได้ตรวจสอบว่าองค์ประกอบมีขนาดคงที่หรือไม่โดยใช้คุณสมบัติ isFixedSize

ht.IsFixedSize