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

◆ Remove() [1/5]

void IDictionary. System.ComponentModel.PropertyDescriptorCollection.Remove ( object key)
inlineprivate

Definition at line 528 of file PropertyDescriptorCollection.cs.

529 {
530 if (key is string)
531 {
532 PropertyDescriptor propertyDescriptor = this[(string)key];
533 if (propertyDescriptor != null)
534 {
535 ((IList)this).Remove((object?)propertyDescriptor);
536 }
537 }
538 }
bool ICollection< KeyValuePair< TKey, TValue > >. Remove(KeyValuePair< TKey, TValue > keyValuePair)

References System.key, and System.Collections.Generic.Dictionary< TKey, TValue >.Remove().