I am using the VS2013 on a windows 8.1 to learn Programming Windows from a book I bought, programming windows 6th edition. I am trying to use VS2013 to build and run the following cs code
class FirstProgram
{
public static void Main()
{
System.Console.WriteLine("Hello, .NET Framework!");
}
}
It compiles correctly according to the debug, but it takes me to a new window titled "FirstProgram.Window". Which, is the name of my program, but nothing displays on the screen.