StringCollection类是.NET Framework类库的新添加,它表示字符串的集合。 StringCollection类在System.Collections.Specialized命名空间中定义。
StringCollection.IsReadOnly属性用于获取一个值,该值指示StringCollection是否为只读。
句法:
public bool IsReadOnly { get; }
返回值:该属性始终返回false。
笔记:
- 创建只读集合后,不允许添加,删除或修改元素。
- 检索此属性的值是O(1)操作。
例子:
// C# code to check if the
// StringCollection is read-only
using System;
using System.Collections;
using System.Collections.Specialized;
class GFG {
// Driver code
public static void Main()
{
// creating a StringCollection named myCol
StringCollection myCol = new StringCollection();
// creating a string array named myArr
String[] myArr = new String[] { "A", "B", "C", "D", "E" };
// Copying the elements of a string
// array to the end of the StringCollection.
myCol.AddRange(myArr);
// checking if StringCollection is
// read-only
Console.WriteLine(myCol.IsReadOnly);
}
}
输出:
False
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.specialized.stringcollection.isreadonly?view=netframework-4.7.2