Mono.Cecil.CustomAttributeArgument.CustomAttributeArgument C# (CSharp) 메소드

CustomAttributeArgument() 공개 메소드

public CustomAttributeArgument ( TypeReference type, object value ) : System
type TypeReference
value object
리턴 System
        public CustomAttributeArgument(TypeReference type, object value)
        {
            Mixin.CheckType (type);
            this.type = type;
            this.value = value;
        }
CustomAttributeArgument