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 (ArrayList)

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

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

Parameters

list
The ArrayList to synchronize.

Return Value

An ArrayList 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