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

◆ this[string key]

object? IDictionary<string, object>. System.Dynamic.ExpandoObject.this[string key]
getsetprivate

Definition at line 473 of file ExpandoObject.cs.

474 {
475 get
476 {
478 {
480 }
481 return value;
482 }
483 set
484 {
486 TrySetValue(null, -1, value, key, ignoreCase: false, add: false);
487 }
488 }
void TrySetValue(object indexClass, int index, object value, string name, bool ignoreCase, bool add)
bool TryGetValueForKey(string key, out object value)
static void RequiresNotNull(object value, string paramName)
static Exception KeyDoesNotExistInExpando(object p0)
Definition Error.cs:33