|
MultiMapK, VTryGetValue Method
|
Tries to find a key in the MultiMap.
Namespace:
Karamba.Utilities
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic bool TryGetValue(
K key,
out List<V> value
)
Public Function TryGetValue (
key As K,
<OutAttribute> ByRef value As List(Of V)
) As Boolean
public:
bool TryGetValue(
K key,
[OutAttribute] List<V>^% value
)
member TryGetValue :
key : 'K *
value : List<'V> byref -> bool
Parameters
- key
- Type: K
Key to be found. - value
- Type: System.Collections.GenericListV
Values in case the Multimap contains the key.
Return Value
Type:
BooleanTrue if the key is found.
See Also