6

这个问题与这个有关,但不是重复的。Jb 在那里发布要添加自定义属性,以下代码段将起作用:

ModuleDefinition module = ...;
MethodDefinition targetMethod = ...;
MethodReference attributeConstructor = module.Import(
    typeof(DebuggerHiddenAttribute).GetConstructor(Type.EmptyTypes));

targetMethod.CustomAttributes.Add(new CustomAttribute(attributeConstructor));
module.Write(...);

我想使用类似的东西,但要添加一个自定义属性,其构造函数在其(唯一)构造函数中采用两个字符串参数,并且我想为那些(显然)指定值。任何人都可以帮忙吗?

4

2 回答 2

12

首先,您必须获得对正确版本的构造函数的引用:

MethodReference attributeConstructor = module.Import(
    typeof(MyAttribute).GetConstructor(new [] { typeof(string), typeof(string) }));

然后,您可以简单地使用字符串参数填充自定义属性:

CustomAttribute attribute = new CustomAttribute(attributeConstructor);
attribute.ConstructorArguments.Add(
        new CustomAttributeArgument(
            module.TypeSystem.String, "Foo"));
attribute.ConstructorArguments.Add(
        new CustomAttributeArgument(
            module.TypeSystem.String, "Bar"));
于 2012-04-23T13:14:17.273 回答
2

以下是如何设置自定义属性的命名参数,该属性完全绕过使用其构造函数设置属性值。请注意,您不能直接设置 CustomAttributeNamedArgument.Argument.Value 甚至 CustomAttributeNamedArgument.Argument,因为它们是只读的。

以下相当于设置 - [XXX(SomeNamedProperty = {some value})]

    var attribDefaultCtorRef = type.Module.Import(typeof(XXXAttribute).GetConstructor(Type.EmptyTypes));
    var attrib = new CustomAttribute(attribDefaultCtorRef);
    var namedPropertyTypeRef = type.Module.Import(typeof(YYY));
    attrib.Properties.Add(new CustomAttributeNamedArgument("SomeNamedProperty", new CustomAttributeArgument(namedPropertyTypeRef, {some value})));
    method.CustomAttributes.Add(attrib);
于 2013-09-13T16:29:25.270 回答