KmerIndexerDictionaryTryGetValue Method |
Gets the value associated with the specified key.
Namespace: Bio.Algorithms.KmerAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public bool TryGetValue(
ISequence key,
out IList<KmerIndexer> value
)
Public Function TryGetValue (
key As ISequence,
<OutAttribute> ByRef value As IList(Of KmerIndexer)
) As Boolean
public:
bool TryGetValue(
ISequence^ key,
[OutAttribute] IList<KmerIndexer^>^% value
)
member TryGetValue :
key : ISequence *
value : IList<KmerIndexer> byref -> bool
Parameters
- key
- Type: BioISequence
The key of the value to get. - value
- Type: System.Collections.GenericIListKmerIndexer
Contains value associated with.
the specified key, if key is found.
Return Value
Type:
BooleanBoolean indicating if key was found.
See Also