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

◆ this[object key]

object? IDictionary. System.Collections.Immutable.ImmutableSortedDictionary< TKey, TValue >.this[object key]
getsetprivate

Implements System.Collections.IDictionary.

Definition at line 1090 of file ImmutableSortedDictionary.cs.

1091 {
1092 get
1093 {
1094 return this[(TKey)key];
1095 }
1096 set
1097 {
1098 throw new NotSupportedException();
1099 }
1100 }