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

cs0021.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c11ab15b6c287ca328ada038f83084c5cbcc8503 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0021: Cannot apply indexing with [] to an expression of type `int'
// Line: 10 
using System;

class Test
{
	public static void Main ()
	{
		int i = 0;
		Console.WriteLine ("Get i[2]: {0}", i[2]);
	}
}