ArrayList.Synchronized Method (IList)
.NET Framework 3.0
Returns an IList wrapper that is synchronized (thread safe).
Namespace: System.Collections
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
public static IList Synchronized ( IList list )
public static function Synchronized ( list : IList ) : IList
Not applicable.
Parameters
- list
The IList to synchronize.
Return Value
An IList wrapper that is synchronized (thread safe).To guarantee the thread safety of the ArrayList, all operations must be done through this wrapper.
Enumerating through a collection is intrinsically not a thread-safe procedure. Even when a collection is synchronized, other threads can still modify the collection, which causes the enumerator to throw an exception. To guarantee thread safety during enumeration, you can either lock the collection during the entire enumeration or catch the exceptions resulting from changes made by other threads.
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: