Delegate CachedLoader<TKey, TValue>.TryLoadValueDelegate
- Namespace
- Utils.Collections
- Assembly
- Utils.dll
Represents a method that attempts to load a value associated with the specified key.
public delegate bool CachedLoader<TKey, TValue>.TryLoadValueDelegate(TKey key, out TValue value)
Parameters
keyTKeyThe key identifying the value to load.
valueTValueWhen the method returns, contains the loaded value if the method succeeded; otherwise, the default value.
Returns
- Extension Methods