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

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

public class Test
{
	public string this [int i] {
		get { return ""; }
	}
	public void set_Item (int i, string s) { }
}