C# HybridDictionary IsSynchronized
Description
HybridDictionary IsSynchronized
gets a value indicating
whether the HybridDictionary is synchronized (thread safe).
Syntax
HybridDictionary.IsSynchronized
has the following syntax.
public bool IsSynchronized { get; }
Example
using System;// w w w .ja va 2 s. c om
using System.Collections;
using System.Collections.Specialized;
public class SamplesHybridDictionary {
public static void Main() {
HybridDictionary myCol = new HybridDictionary();
myCol.Add( "C", "1.29" );
myCol.Add( "D", "0.89" );
myCol.Add( "E", "0.99" );
Console.WriteLine(myCol.IsSynchronized );
}
}
The code above generates the following result.