标签: c# .net custom-attributes
我想做那样的事情:
int[] someArray = new int[50]; Foo([ArgumentAttribute(20)] someArray) ; // ... `enter code here` int Foo(int[] someArgument) { // my code ... }
不确定是否可能。