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

◆ GetCustomAttributes() [10/16]

static Attribute[] System.Attribute.GetCustomAttributes ( Module element,
bool inherit )
inlinestaticinherited

Definition at line 546 of file Attribute.cs.

547 {
548 if (element == null)
549 {
550 throw new ArgumentNullException("element");
551 }
552 return (Attribute[])element.GetCustomAttributes(typeof(Attribute), inherit);
553 }
virtual object[] GetCustomAttributes(bool inherit)
Definition Module.cs:101

References System.Reflection.Module.GetCustomAttributes().