LocalizedDictionaryK, VTryGetValue Method (K, V) |
Gets the value associated with the specified key.
Namespace:
ff14bot.Helpers
Assembly:
RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax public bool TryGetValue(
K primaryKey,
out V val
)
Parameters
- primaryKey
- Type: K
The key of the value to get. - val
- Type: V
When this method returns, contains the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.
Return Value
Type:
Boolean if the
DictionaryTKey, TValue contains an element with the specified key; otherwise,
.
Exceptions Exception | Condition |
---|
ArgumentNullException | primaryKey is . |
See Also