SortedList<TKey, TValue>::ICollection::SyncRoot Property
Gets an object that can be used to synchronize access to the ICollection.
Assembly: System (in System.dll)
private: property Object^ SyncRoot { virtual Object^ get() sealed = ICollection::SyncRoot::get; }
Property Value
Type: System::Object^An object that can be used to synchronize access to the ICollection. In the default implementation of SortedList<TKey, TValue>, this property always returns the current instance.
Implements
ICollection::SyncRootDefault implementations of collections in System.Collections.Generic are not synchronized.
Enumerating through a collection is intrinsically not a thread-safe procedure. To guarantee thread safety during enumeration, you can lock the collection during the entire enumeration. To allow the collection to be accessed by multiple threads for reading and writing, you must implement your own synchronization.
The SyncRoot property returns an object that can be used to synchronize access to the ICollection. Synchronization is effective only if all threads lock this object before accessing the collection. The following code shows the use of the SyncRoot property for C#, C++, and Visual Basic.
ICollection^ ic = ...; try { Monitor::Enter(ic->SyncRoot); // Access the collection. } finally { Monitor::Exit(ic->SyncRoot); }
Retrieving the value of this property is an O(1) operation.
Available since 10
.NET Framework
Available since 2.0