I opened a program I had made yesterday which ran just fine yesterday but today in Visual Studio 2013 Express for Windows, the 'Console' part of all of the 'Console.WriteLine("");' are underlined in red, giving the error 'doesnt exist in current context' - Ive looked for several solutions but I cant find any - I've just started out and its frustrating not being able to test my programs, the code below is a super simple version that gives the same error. Thanks in advance for any help.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
class Start
{
static void Main(string[] args)
{
Console.WriteLine("This is an Error :S");
}
}