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

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


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

ตัวอย่าง

using System;
using System.Collections;
namespace Demo {
   class Program {
      static void Main(string[] args) {
         Hashtable ht = new Hashtable();
         ht.Add("One", "Amit");
         ht.Add("Two", "Aman");
         ht.Add("Three", "Raman");
         Console.WriteLine("IsReadOnly = " + ht.IsReadOnly);
         Console.ReadKey();
      }
   }
}

ผลลัพธ์

IsReadOnly = False

ด้านบนเราได้ตั้งค่า Hashtable ที่มีสามองค์ประกอบ

ht.Add("One", "Amit");
ht.Add("Two", "Aman");
ht.Add("Three", "Raman");

หลังจากนั้นเราได้ตรวจสอบโดยใช้คุณสมบัติ IsReadOnly

Console.WriteLine("IsReadOnly = " + ht.IsReadOnly);