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

interfaces.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6fcd9ec30612172a162b0c55976a14a93b96ad33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
interface X {

	// Methods
	new int IntegerMethod (int a, int b);
	new int IntegerMethod (int a, string c);
	new int StringMethod ();
	int A (string b);

	// Properties
	new string TheString { get; set; }
	int TheInt { get; }
	int TheInt2 { set; }
	int TheInt3 { set; get; }

	// Events
	new event int MyEvent;
	event string MyEvent2;

	// Indexers
}