我想使用 Mono.Cecil 为方法添加自定义属性。自定义属性的构造函数有一个System.Type
. 我试图弄清楚如何使用 Mono.Cecil 创建这样的自定义属性以及 System.Type 参数的参数是什么。
我的属性定义如下:
public class SampleAttribute : Attribute {
public SampleAttribute (Type type) {}
}
到目前为止,我已经尝试过:
var module = ...;
var method = ...;
var sampleAttributeCtor = ...;
var attribute = new CustomAttribute (sampleAttributeCtor);
attribute.ConstructorArguments.Add (
new ConstructorArgument (module.TypeSystem.String, module.GetType ("TestType").FullName));
但这似乎不起作用。任何想法?
我已将代码更新如下
var module=targetExe.MainModule;
var anothermodule=sampleDll.MainModule;
var custatt = new CustomAttribute(ctorReference);
var corlib =module .AssemblyResolver.Resolve((AssemblyNameReference)module.TypeSystem.Corlib);
var systemTypeRef = module.Import(corlib.MainModule .GetType("System.Type"));
custatt.ConstructorArguments.Add(new CustomAttributeArgument(systemTypeRef, module.Import(anothermodule.GetType("SampleDll.Annotation"))));
methodDef.CustomAttributes.Add(custatt);
有什么建议么?