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

test-com-02.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a26776c01d4bfb31a161f0ed6ef8dc779a6bc76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Compiler options: -r:test-com-02-lib.dll

using Test;

class C {		
	public C (ITopic it) {
		string i = it.get_Title (2, 3);
		it.set_Title (1, 2, false, "bb");
	}
	
	public static void Main () {}
}