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

cs0234.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4ebec291b29a365922da74047642bad13044eb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0234: The type or namespace name `Linq' does not exist in the namespace `System'. Are you missing `System.Core' assembly reference?
// Line: 5
// Compiler options: -noconfig

using System.Linq;

class C
{
	public static void Main ()
	{
	}
}