-
Notifications
You must be signed in to change notification settings - Fork 36
M_CodeJam_Threading_ConcurrentLazyDictionary_2__ctor
andrewvk edited this page Jun 23, 2016
·
8 revisions
Initialize instance.
Namespace: CodeJam.Threading
Assembly: CodeJam (in CodeJam.dll) Version: 1.0.0.0 (1.0.0.0)
C#
public ConcurrentLazyDictionary(
Func<TKey, TValue> valueFactory
)
VB
Public Sub New (
valueFactory As Func(Of TKey, TValue)
)
F#
new :
valueFactory : Func<'TKey, 'TValue> -> ConcurrentLazyDictionary
- valueFactory
- Type: System.Func(TKey, TValue)
Function to create value on demand.
ConcurrentLazyDictionary(TKey, TValue) Class
ConcurrentLazyDictionary(TKey, TValue) Overload
CodeJam.Threading Namespace