Click or drag to resize

RankedDictionaryTKey, TValueKeyCollectionTryGet Method

Gets the actual key for the supplied search key.

Namespace:  Kaos.Collections
Assembly:  KaosCollections (in KaosCollections.dll) Version: 4.2.0.0
Syntax
C#
public bool TryGet(
	TKey getKey,
	out TKey key
)

Parameters

getKey
Type: TKey
The key to find.
key
Type: TKey
If key is found, its actual value is placed here; otherwise it will be loaded with the default for its type.

Return Value

Type: Boolean
true if getKey is found; otherwise false.
See Also