Click or drag to resize

ConcurrentTokenizedLinkedListTKey, TValueTryTakeLast Method

Tries to take the last item from the list.

Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public bool TryTakeLast(
	out TKey key,
	out TValue value
)

Parameters

key  TKey
If successful, contains the key that was used to add the item.
value  TValue
if successful, contains the value of the item.

Return Value

Boolean
True if the operation was successful. If the list contains no items, the return value is false.
See Also