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

◆ this[object key]

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

Implements System.Collections.IDictionary.

Definition at line 1058 of file ImmutableDictionary.cs.

1059 {
1060 get
1061 {
1062 return this[(TKey)key];
1063 }
1064 set
1065 {
1066 throw new NotSupportedException();
1067 }
1068 }