| 
TypedSortedListEx
 TKey
,
 TValue
Synchronized Method
  | 
 Returns a synchronized (thread-safe) wrapper for the SortedList.
 Namespace:
 Spire.Doc.Collections
 Assembly:
Spire.Doc (in Spire.Doc.dll) Version: 13.2.3.0 (13.2.3.3046)
 Syntax
Syntax
 
 
public static TypedSortedListEx<TKey, TValue> Synchronized(
	TypedSortedListEx<TKey, TValue> list
)
 
Public Shared Function Synchronized ( 
	list As TypedSortedListEx(Of TKey, TValue)
) As TypedSortedListEx(Of TKey, TValue)
 
public:
static TypedSortedListEx<TKey, TValue>^ Synchronized(
	TypedSortedListEx<TKey, TValue>^ list
)
 
static member Synchronized : 
list : TypedSortedListEx<'TKey, 'TValue> -> TypedSortedListEx<'TKey, 'TValue> 
 
 
 
Parameters
 
- 
list
 
- 
 Type:
 
Spire.Doc.Collections
TypedSortedListEx
 
 TKey
 ,
 
 TValue
 The SortedList to synchronize.
Return Value
 
 Type:
 
TypedSortedListEx
 
 TKey
 ,
 
 TValue
 A synchronized (thread-safe) wrapper for the SortedList.
 
 Exceptions
Exceptions
 
 
| Exception | Condition | 
| ArgumentNullException | When list is null. | 
 
 
 See Also
See Also