C#: 02-Create Project
Create 'Essentials2017' Console App (.NET Core)

Solution Explorer Results

Program.cs is created with a Main method that accept arguments

using System;
namespace Essentials2017
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
CTRL-F5 to Run program ( F5 to Debug)





