NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ArrayList.Synchronized (IList)

Returns an IList wrapper that is synchronized (thread-safe).

[Visual Basic]
Overloads Public Shared Function Synchronized( _
   ByVal list As IList _
) As IList
[C#]
public static IList Synchronized(
   IList list
);
[C++]
public: static IList* Synchronized(
   IList* list
);
[JScript]
public static function Synchronized(
   list : IList
) : IList;

Parameters

list
The IList to synchronize.

Return Value

An IList wrapper that is synchronized (thread-safe).

Exceptions

Exception Type Condition
ArgumentNullException list is a null reference (in Visual Basic Nothing).

See Also

ArrayList Class | ArrayList Members | System.Collections Namespace | ArrayList.Synchronized Overload List | SyncRoot | IsSynchronized