有没有办法在C#中设置函数参数属性?

时间:2013-04-14 10:03:56

标签: c# .net custom-attributes

我想做那样的事情:

int[] someArray  = new int[50];

Foo([ArgumentAttribute(20)] someArray) ;

// ... `enter code here`

int Foo(int[] someArgument)
{
   //   my code ...

}

不确定是否可能。

0 个答案:

没有答案