Check if StringDictionary is synchronized (thread safe) in CSharp
Description
The following code shows how to check if StringDictionary is synchronized (thread safe).
Example
using System;//ww w.j a v a 2 s. co m
using System.Collections;
using System.Collections.Specialized;
public class SamplesStringDictionary {
public static void Main() {
StringDictionary myCol = new StringDictionary();
myCol.Add( "red", "rojo" );
myCol.Add( "green", "verde" );
myCol.Add( "blue", "azul" );
Console.WriteLine( myCol.IsSynchronized );
}
}
The code above generates the following result.