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

test-567.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 424c7ff11db8f135eb8ac995dfb2a1fa90526e83 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
using System;
using System.Reflection;
using System.Runtime.InteropServices;

namespace preservesig_test
{
	class Class1
	{
		public static int Main(string[] args)
		{
			MethodInfo dofoo = typeof(TestClass).GetMethod("DoFoo");
			if ((dofoo.GetMethodImplementationFlags() & MethodImplAttributes.PreserveSig) == 0)
				return 1;
			
			dofoo = typeof(TestClass).GetProperty("Foo").GetGetMethod ();
			if ((dofoo.GetMethodImplementationFlags() & MethodImplAttributes.PreserveSig) == 0)
				return 1;

			dofoo = typeof(TestClass).GetEvent("e").GetAddMethod (true);
			if ((dofoo.GetMethodImplementationFlags() & MethodImplAttributes.PreserveSig) == 0)
				return 1;
			
			Console.WriteLine("Has PreserveSig");
			return 0;
		}
	}

	public class TestClass
	{
		public delegate void D ();
		
		[method:PreserveSig]
		public event D e;
		
		[PreserveSig()]
		public int DoFoo()
		{
			return 0;
		}
		
		public int Foo {
			[PreserveSig]
			get {
				return 2;
			}
		}
	}
}