PERWAPI.MetaDataElement.SetCustomAttributes C# (CSharp) Method

SetCustomAttributes() public method

Associate some custom attribute(s) with this meta data element
public SetCustomAttributes ( CustomAttribute cas ) : void
cas CustomAttribute list of custom attributes
return void
        public void SetCustomAttributes(CustomAttribute[] cas)
        {
            if (cas == null)
                customAttributes = null;
            else
                customAttributes = new ArrayList(cas);
        }