System.Reflection.CustomAttributeData.CustomAttributeData C# (CSharp) 메소드

CustomAttributeData() 개인적인 메소드

private CustomAttributeData ( Attribute attribute ) : System
attribute Attribute
리턴 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