PERWAPI.MetaDataElement.GetCustomAttributes C# (CSharp) Method

GetCustomAttributes() public method

Get any custom attributes associated with this meta data element
public GetCustomAttributes ( ) : PERWAPI.CustomAttribute[]
return PERWAPI.CustomAttribute[]
        public CustomAttribute[] GetCustomAttributes()
        {
            if (customAttributes == null) return new CustomAttribute[0];
            return (CustomAttribute[])customAttributes.ToArray(typeof(CustomAttribute));
        }