DoubleDictionaryTKey, TKeySecondary, TValueTryReverseLookup Method |
Attempt to find a Key,Key pair for a given value
Namespace:
WeatherSystem.Internal
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntaxpublic bool TryReverseLookup(
TValue value,
out KeyValuePair<TKey, TKeySecondary> lookupValues
)
Parameters
- value
- Type: TValue
The value to find the keys for - lookupValues
- Type: System.Collections.GenericKeyValuePairTKey, TKeySecondary
The found keys, where the primary key is the "Key" in the KeyValue pair and the secondary key is the "Value"
Return Value
Type:
BooleanTrue if valid keys were found for the value, false otherwise
See Also