3 public class FooAttribute
: Attribute
{
4 public char [] Separator
;
7 [Foo (Separator
= new char[] {'A'}
)]
9 public static void Main () {
10 FooAttribute foo
= (FooAttribute
) (typeof (Tests
).GetCustomAttributes (false) [0]);
11 Console
.WriteLine (foo
.Separator
);