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

test-325.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92b97fe5d48dd354a9f7a82b54cbb50b11b41977 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System; 
 
public class RequestAttribute: Attribute { 
	public RequestAttribute(string a, string b, params string[] c) 
	{ 
	 
	} 
} 
 
public class MyClass { 
	[Request("somereq", "result")] 
	public static int SomeRequest() 
	{ 
		return 0; 
	} 
	 
	public static void Main() 
	{ 
		SomeRequest(); 
	} 
}