I decided to have a go at building Windows Metro style apps with the Windows Developer Preview again, after multiple frustrating experiences.
So I fire up Visual Studio and BAM! Right as I try to type in this code
System.Console.WriteLine("");
it gives me the red squiggly under "Console".
So I try something else:
string text = System.IO.File.ReadAllText(@"C:\Users\Public\TestFolder\WriteText.txt");
and THAT fails as well! Red squiggly under File.
Why is this error popping up? All this code should work fine! Or am I making a basic mistake?