System.Reflection.CustomAttributeData.CustomAttributeData C# (CSharp) Method

CustomAttributeData() private method

private CustomAttributeData ( Attribute attribute ) : System
attribute Attribute
return System
        internal CustomAttributeData(Attribute attribute)
        {
            if (attribute is DllImportAttribute)
                Init((DllImportAttribute)attribute);
            else if (attribute is FieldOffsetAttribute)
                Init((FieldOffsetAttribute)attribute);
            else if (attribute is MarshalAsAttribute)
                Init((MarshalAsAttribute)attribute);
            else
                Init(attribute);
        }
        private void Init(DllImportAttribute dllImport)

Same methods

CustomAttributeData::CustomAttributeData ( Module scope, CustomAttributeRecord caRecord ) : System