CachedObjectManagerByMaximumNumberOfItemsTKey, TValueTryTake Method |
Try to take a stored object from this collection.
If successfull, this function will return any object that was stored under the given key.
Namespace: Altaxo.CollectionsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public bool TryTake(
TKey key,
out TValue value
)
Parameters
- key TKey
- The key of the object.
- value TValue
- On success, the object taken from this collection.
Return Value
BooleanTrue if the object was found; false otherwise.
See Also