hello i just started the dietel series for c# but in the first chapter he used a peice of code to print hello world and in the screenshot he uses the app holds and doesn't shut down while when i use it it just runs and closes emidtialty i tried to look online and some people said to use console.readline but is it the right implemtation here and will it have any problems in the long run or is the problem with my version of vs (using vs 2017)
// Fig. 3.1: Welcome1.cs
// Text-displaying app.
using System;
class Welcome1
{
// Main method begins execution of C# app
static void Main()
{
Console.WriteLine("Welcome to C# Programming!");
} // end Main
} // end class Welcome1