我想使用DynamicMethod生成以下方法。
public string HelloWorld([CustomAttribute]string name)
{
return name;
}
我尝试过以下操作,但DefineParameter始终返回null。如何将自定义属性分配给参数。
class Program
{
static void Main(string[] args)
{
var method = new DynamicMethod("HelloWorld", typeof (string), new[] {typeof (string)});
var parameterBuilder = method.DefineParameter(1, ParameterAttributes.In, "text");
parameterBuilder.SetCustomAttribute(new CustomAttributeBuilder(typeof(CustomAttribute).GetConstructor(Type.EmptyTypes), new object[] {}));
var il = method.GetILGenerator();
il.Emit(OpCodes.Ldarg_0);
il.Emit(OpCodes.Ret);
var temp = (Func<string,string>)method.CreateDelegate(typeof (Func<string, string>));
Console.WriteLine(temp("Hello World"));
}
}
public class CustomAttribute : Attribute
{
}
答案 0 :(得分:0)
我不知道为什么但是在你链接的页面上,文档说它不受支持:
不必命名动态方法及其参数,但可以指定名称以帮助调试。动态方法或其参数不支持自定义属性。