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

◆ this[object key]

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

Implements System.Collections.IDictionary.

Definition at line 250 of file ImmutableDictionary.cs.

251 {
252 get
253 {
254 return this[(TKey)key];
255 }
256 set
257 {
258 this[(TKey)key] = (TValue)value;
259 }
260 }