Click or drag to resize
CommandifiedList<T>.PerformSyncedAction<TFunc> Method (Func<TFunc>)
Performs the specified action, either inside a lock on SyncRoot if this list is Synchronized, or normally, if this list isn't synchronized.

Namespace:  SD.Tools.Algorithmia.GeneralDataStructures
Assembly:  SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.3.0.0 (1.3.17.0314)
Syntax
protected TFunc PerformSyncedAction<TFunc>(
	Func<TFunc> toPerform
)

Parameters

toPerform
Type: System.Func<TFunc>
To perform.

Type Parameters

TFunc
The type of the element to return

Return Value

Type: TFunc
the result of toPerform
See Also