Click or drag to resize

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
Syntax
C#
public 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: Boolean
True if valid keys were found for the value, false otherwise
See Also