-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Collections_LazyDictionary_Create__2_3
Andrew Koryavchenko edited this page Jun 17, 2018
·
3 revisions
Creates implementation of ILazyDictionary(TKey, TValue).
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static ILazyDictionary<TKey, TValue> Create<TKey, TValue>(
Func<TKey, TValue> valueFactory,
LazyThreadSafetyMode threadSafety
)
VB
Public Shared Function Create(Of TKey, TValue) (
valueFactory As Func(Of TKey, TValue),
threadSafety As LazyThreadSafetyMode
) As ILazyDictionary(Of TKey, TValue)
F#
static member Create :
valueFactory : Func<'TKey, 'TValue> *
threadSafety : LazyThreadSafetyMode -> ILazyDictionary<'TKey, 'TValue>
- valueFactory
- Type: System.Func(TKey, TValue)
Function to create value on demand. - threadSafety
- Type: System.Threading.LazyThreadSafetyMode
One of the enumeration values that specifies the thread safety mode.
- TKey
- Type of key
- TValue
- Type of value
Type: ILazyDictionary(TKey, TValue)
ILazyDictionary(TKey, TValue) implementation.
LazyDictionary Class
Create Overload
CodeJam.Collections Namespace