Check if the StringCollection is read-only in CSharp
Description
The following code shows how to check if the StringCollection is read-only.
Example
using System;/*from w ww . ja v a2 s. c o m*/
using System.Collections;
using System.Collections.Specialized;
public class SamplesStringCollection {
public static void Main() {
StringCollection myCol = new StringCollection();
String[] myArr = new String[] { "A", "B", "C", "java2s.com"};
myCol.AddRange( myArr );
Console.WriteLine( myCol.IsReadOnly);
}
}
The code above generates the following result.