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

test-anon-76.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee50eba347f8a842cc2635ecc11e9bd2b7cbcf34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;

delegate object FactoryDelegate ();

public class C
{
	FactoryDelegate var;
	int counter;

	FactoryDelegate this [string s]
	{
		set { var = value; }
		get { return var; }
	}

	public void X ()
	{
		this ["ABC"] = delegate () {
			++counter;
			Console.WriteLine ("A");
			return "Return";
		};
	}

	static int Main ()
	{
		C o = new C ();
		o.X ();

		Console.WriteLine ("B");
		Console.WriteLine (o ["ABC"] ());
		
				Console.WriteLine (o.counter);
		if (o.counter != 1)
			return 1;

		return 0;
	}
}