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

test-async-87.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d973ba19748a8fb7d6c8ba78a878e18ecc15b718 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using System;
using System.Threading.Tasks;

class CA
{
	public CB CB { get; set; }
	public DeviceDetails DeviceDetails { get; set; }
}

class CB
{
	public CB (string arg)
	{
	}
}

class DeviceDetails
{
	public DeviceDetails (string arg)
	{
	}
}

class BB
{
	public Task<string> GetUser()
	{        
		return Task.FromResult ("aa");
	}

	public Task<string> GetDevice()
	{
		return Task.FromResult ("bb");
	}    
}

class X
{
	BB bb = new BB ();

	public async Task<CA> GetCAAsync()
	{
		return new CA
		{
			CB = new CB(await bb.GetUser()),
			DeviceDetails = new DeviceDetails(await bb.GetDevice())
		};
	}

	static void Main ()
	{
		var x = new X ();
		x.GetCAAsync ().Wait ();
	}
}