12 lines
245 B
C#
Raw Normal View History

// 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 ()
{
}
}