Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-158.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cdb8d45d54b1bc6d32f328cdf93b3c1e4c84db2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
using System.Reflection;

[AttributeUsage (AttributeTargets.All)]
public class My : Attribute {
	public object o;

	public My (object o) {
		this.o = o;
	}
	
	[My(TypeCode.Empty)]
	public class Test {
		public static int Main() {
			System.Reflection.MemberInfo info = typeof (Test);
			object[] attributes = info.GetCustomAttributes (false);
			for (int i = 0; i < attributes.Length; i ++) {
				System.Console.WriteLine(attributes[i]);
			}
			if (attributes.Length != 1)
				return 1;
			My attr = (My) attributes [0];
			if ((TypeCode) attr.o != TypeCode.Empty)
				return 2;
			return 0;
		}
	}
}