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

CustomAttributeNamedArgument() public method

public CustomAttributeNamedArgument ( string name, CustomAttributeArgument argument ) : System
name string
argument CustomAttributeArgument
return System
        public CustomAttributeNamedArgument(string name, CustomAttributeArgument argument)
        {
            Mixin.CheckName (name);
            this.name = name;
            this.argument = argument;
        }
CustomAttributeNamedArgument