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

gtest-linq-06.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 747c0903087f075a2bcace18404bc752500b737a (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


using System;
using System.Collections.Generic;
using System.Linq;

class Let
{
	public static int Main ()
	{
		int[] int_array = new int [] { 0, 1 };
		
		IEnumerable<int> e;
		int pos;

		// Explicitly typed
		e = from int i in int_array
			let u = i * 2
			select u;
		pos = 0;
		foreach (int actual in e) {
			Console.WriteLine (actual);
			if (int_array [pos++] * 2 != actual)
				return pos;
		}		
		
		// Implicitly typed
		e = from i in int_array
			let u = i * 2
			let v = u * 3
			where u != 0
			select v;
		pos = 1;
		foreach (int actual in e) {
			Console.WriteLine (actual);
			if (int_array [pos++] * 6 != actual)
				return pos;
		}
		
		Console.WriteLine ("OK");
		return 0;
	}
}