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