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

test-var-03.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7df159597406e4ae2480b059d87b0a6b73323d58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

// Tests variable type inference with the var keyword when using the foreach statement with an array
using System;
using System.Collections;

public class Test
{
	public static int Main ()
	{
		string [] strings = new string [] { "Foo", "Bar", "Baz" };
		foreach (var item in strings)
			if (item.GetType() != typeof (string))
				return 1;
		
		int [] ints = new int [] { 2, 4, 8, 16, 42 };
		foreach (var item in ints)
			if (item.GetType() != typeof (int))
				return 2;
		
		return 0;
	}
}