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

cs0111-12.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b2a1b71da221b33daef0750e09e3c0e8b43ad53 (plain)
1
2
3
4
5
6
7
8
9
10
// cs111.cs : Class 'Test' already defines a member called 'get_Value' with the same parameter types
// Line : 6

public class Test
{
	public string Value {
		set { }
	}
	public string get_Value () { return null; }
}