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

ix2.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c36b52ea2ac5b8640022e7816b96ebaf8db50093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

interface Blah {
	string this [ int INDEX ] { get; set; }
	string Item (int index);
}

public class Foo {

	public static void Main ()
	{
		Console.WriteLine ("foo");
	}
}