Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ this[TKey key] [1/2]

TValue System.Collections.Immutable.ImmutableDictionary< TKey, TValue >.this[TKey key]
get

Implements System.Collections.Generic.IReadOnlyDictionary< TKey, TValue >.

Definition at line 1021 of file ImmutableDictionary.cs.

1022 {
1023 get
1024 {
1025 Requires.NotNullAllowStructs(key, "key");
1026 if (TryGetValue(key, out var value))
1027 {
1028 return value;
1029 }
1031 }
1032 }
bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value)
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string Arg_KeyNotFoundWithKey
Definition SR.cs:94
Definition SR.cs:7