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

cs0111-15.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 247d2b5ff2bf73243b71900b7130bfed976861d8 (plain)
1
2
3
4
5
6
7
8
// cs0111-15.cs: `I.set_Item(int[], params int[])' is already defined. Rename this member or use different parameter types
// Line : 7

interface I
{
	void set_Item (int[] a, params int[] b);
	int[] this [params int[] ii] { get; }
}