Mono.Cecil.CustomAttributeArgument.CustomAttributeArgument C# (CSharp) Method

CustomAttributeArgument() public method

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