Để tạo trình bao bọc chỉ đọc cho ArrayList, mã như sau -
Ví dụ
using System;
using System.Collections;
public class Demo {
public static void Main(){
ArrayList list = new ArrayList();
list.Add("One");
list.Add("Two");
list.Add("Three");
list.Add("Four");
list.Add("Five");
list.Add("Six");
list.Add("Seven");
list.Add("Eight");
Console.WriteLine("ArrayList elements...");
foreach(string str in list){
Console.WriteLine(str);
}
Console.WriteLine("ArrayList is read-only? = "+list.IsReadOnly);
}
} Đầu ra
Điều này sẽ tạo ra kết quả sau -
Các phần tửArrayList elements... One Two Three Four Five Six Seven Eight ArrayList is read-only? = False
Ví dụ
Bây giờ chúng ta hãy xem một ví dụ khác -
using System;
using System.Collections;
public class Demo {
public static void Main(){
ArrayList list = new ArrayList();
list.Add("One");
list.Add("Two");
list.Add("Three");
list.Add("Four");
list.Add("Five");
list.Add("Six");
list.Add("Seven");
list.Add("Eight");
Console.WriteLine("ArrayList elements...");
foreach(string str in list){
Console.WriteLine(str);
}
Console.WriteLine("ArrayList is read-only? = "+list.IsReadOnly);
ArrayList list2 = ArrayList.ReadOnly(list);
Console.WriteLine("ArrayList is read-only now? = "+list2.IsReadOnly);
}
} Đầu ra
Điều này sẽ tạo ra kết quả sau -
Các phần tửArrayList elements... One Two Three Four Five Six Seven Eight ArrayList is read-only? = False ArrayList is read-only now? = True