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

◆ GetCustomAttributes() [4/5]

static IList< CustomAttributeData > System.Reflection.CustomAttributeData.GetCustomAttributes ( ParameterInfo target)
inlinestaticinherited

Definition at line 43 of file CustomAttributeData.cs.

44 {
45 if (target == null)
46 {
47 throw new ArgumentNullException("target");
48 }
49 return target.GetCustomAttributesData();
50 }

References System.Reflection.ParameterInfo.GetCustomAttributesData().