Check if the Hashtable is read-only in CSharp
Description
The following code shows how to check if the Hashtable is read-only.
Example
using System;/* w w w .java2 s . c o m*/
using System.Collections;
class MainClass
{
public static void Main()
{
Hashtable hash = new Hashtable();
hash.Add("A", "1");
hash.Add("B", "2");
hash.Add("C", "3");
hash.Add("D", "4");
hash.Add("E", "5");
Console.WriteLine(hash.IsReadOnly);
}
}
The code above generates the following result.