Every console app starts with Main : Main « Language Basics « C# / C Sharp
- C# / C Sharp
- Language Basics
- Main
Every console app starts with Main

/*
Learning C#
by Jesse Liberty
Publisher: O'Reilly
ISBN: 0596003765
*/
namespace NotePad
{
public class HelloWorld
{
// every console app starts with Main
static void Main()
{
System.Console.WriteLine("Hello world!");
}
}
}
Related examples in the same category