namespace helloWorld { class Program { static void method() { Console.WriteLine("Hello World"); } static void Main(string[] args) { method(); Console.ReadKey(); } } }