La clase StringCollection es una nueva adición a la biblioteca de clases de .NET Framework que representa una colección de strings. La clase StringCollection se define en el espacio de nombres System.Collections.Specialized .
La propiedad StringCollection.IsSynchronized se usa para obtener un valor que indica si el acceso a StringCollection está sincronizado (seguro para subprocesos) o no.
Sintaxis:
public bool IsSynchronized { get; }
Valor devuelto: esta propiedad siempre devuelve falso.
Nota: Recuperar el valor de esta propiedad es una operación O(1).
Ejemplo:
// 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); } }
Producción:
False
Referencia:
Publicación traducida automáticamente
Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA