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

◆ GetCustomAttributes() [2/16]

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

Definition at line 640 of file Attribute.cs.

641 {
642 if (element == null)
643 {
644 throw new ArgumentNullException("element");
645 }
646 return (Attribute[])element.GetCustomAttributes(typeof(Attribute), inherit);
647 }
virtual object[] GetCustomAttributes(bool inherit)
Definition Assembly.cs:332

References System.Reflection.Assembly.GetCustomAttributes().