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

◆ this[TKey key] [2/2]

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

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

Definition at line 1034 of file ImmutableDictionary.cs.

1035 {
1036 get
1037 {
1038 return this[key];
1039 }
1040 set
1041 {
1042 throw new NotSupportedException();
1043 }
1044 }