📜  C#|检查StringCollection是否已同步(线程安全)

📅  最后修改于: 2021-05-29 17:01:33             🧑  作者: Mango

StringCollection类是.NET Framework类库的新添加,它表示字符串的集合。 StringCollection类在System.Collections.Specialized命名空间中定义。
StringCollection.IsSynchronized属性用于获取一个值,该值指示是否同步对StringCollection的访问(线程安全)。

句法:

public bool IsSynchronized { get; }

返回值:该属性始终返回false。

注意:检索此属性的值是O(1)操作。

例子:

// C# code to check if StringCollection
// is synchronized (thread safe)
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
        // synchronized (thread safe)
        Console.WriteLine(myCol.IsSynchronized);
    }
}
输出:
False

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.specialized.stringcollection.issynchronized?view=netframework-4.7.2