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

◆ GetAttribute< T >() [3/3]

static T ReLogic.Utilities.AttributeUtilities.GetAttribute< T > ( this Type type)
inlinestatic
Type Constraints
T :Attribute 

Definition at line 32 of file AttributeUtilities.cs.

32 : Attribute
33 {
34 return type.GetCustomAttributes(inherit: false).OfType<T>().SingleOrDefault();
35 }
static Attribute[] GetCustomAttributes(MemberInfo element, Type attributeType)
Definition Attribute.cs:338

References System.Attribute.GetCustomAttributes(), and System.type.