在创建“AttributeTargets.Parameter”构造函数的自定义属性时不会调用。我想在Test Class下使用Fn函数的参数值。我使用了 .net 核心和 .net 标准。class Program{ public static void Main() { var test = new Test(); test.Fn("Hello"); Console.WriteLine("end"); Console.Read(); }}public class Test{ public void Fn([Parameter] string parm) { Console.WriteLine(parm); }}[AttributeUsage(AttributeTargets.Parameter)]public class ParameterAttribute : Attribute{ public ParameterAttribute() { Console.WriteLine("In Parameter Attribute"); }}
添加回答
举报
0/150
提交
取消