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

cs1546.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 77fa101e0308adb173f6bfaf72b0dd57b00e7a44 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs1546.cs: Property `Title' is not supported by the C# language. Try to call the accessor method `Test.ITopic.get_Title(int, int)' directly
// Line: 9
// Compiler options: -r:CS1546-lib.dll

using Test;

class C {		
	public C (ITopic it) {
		string i = it.Title (2, 3);
	}
}