Mono.Cecil.CustomAttributeNamedArgument.CustomAttributeNamedArgument C# (CSharp) Метод

CustomAttributeNamedArgument() публичный Метод

public CustomAttributeNamedArgument ( string name, CustomAttributeArgument argument ) : System
name string
argument CustomAttributeArgument
Результат System
        public CustomAttributeNamedArgument(string name, CustomAttributeArgument argument)
        {
            Mixin.CheckName (name);
            this.name = name;
            this.argument = argument;
        }
CustomAttributeNamedArgument