Click or drag to resize

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.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
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

Boolean
True if the object was found; false otherwise.
See Also