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

gtest-etree-25.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd4089569ce4ab317dcd7faf78619a8c17c92d69 (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
using System;
using System.Linq.Expressions;

class Foo
{
	public void OnBaz (IBaz baz)
	{
	}
}

interface IBar
{
	void RunOnBaz (Action<IBaz> action);
}

interface IBaz
{
}

class C : IBar
{
	public void RunOnBaz (Action<IBaz> action)
	{
		action (null);
	}
	
    public static int Main ()
    {
		var foo = new Foo ();

		Expression<Action<IBar>> e = bar => bar.RunOnBaz (foo.OnBaz);
		e.Compile () (new C ());
		
		return 0;
    }
}