Click or drag to resize

DoubleDictionaryTKey, TKeySecondary, TValueTryGetValue Method

Try to get a value with the given keys

Namespace:  WeatherSystem.Internal
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
C#
public bool TryGetValue(
	TKey key,
	TKeySecondary secondaryKey,
	out TValue value
)

Parameters

key
Type: TKey
The primary key
secondaryKey
Type: TKeySecondary
The secondary key
value
Type: TValue
The found value, if one is found. otherwise value is null

Return Value

Type: Boolean
True if a value was found, false otherwise
See Also