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

CustomAttributeType() public method

public CustomAttributeType ( CustomAttributeEncoding encodedType, CustomAttributeEncoding encodedArrayType, CustomAttributeEncoding encodedEnumType, string enumName ) : System
encodedType CustomAttributeEncoding
encodedArrayType CustomAttributeEncoding
encodedEnumType CustomAttributeEncoding
enumName string
return System
        public CustomAttributeType(CustomAttributeEncoding encodedType, CustomAttributeEncoding encodedArrayType, 
            CustomAttributeEncoding encodedEnumType, string enumName)
        {
            m_encodedType = encodedType;
            m_encodedArrayType = encodedArrayType;
            m_encodedEnumType = encodedEnumType;
            m_enumName = enumName;
            m_padding = m_encodedType; 
        }
        #endregion
CustomAttributeType