Building great apps on Windows should be easier – no matter how your app is written. We want to ensure you have a path forward to make your apps better on Windows and we’re doing that with
// A Hello World! program in C#.
using System;
namespace HelloWorld
{
class Hello
{
static void Main()
{
Console.WriteLine("Hello World!");
// Keep the console window open in debug mode.
Console.WriteLine("Press aney to exit.");
Console.ReadKey();
}
}
}