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

cs0082.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1908dbd1c00772fcbf36c1a8f4fff399d5559c3b (plain)
1
2
3
4
5
6
7
8
9
10
// CS0082: A member `Test.get_Value()' is already reserved
// Line: 7

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