0
0
llucycodes42
This code creates a new program object and calls the Main() method.
Shortcut: helloworld
using System;
namespace ConsoleApp
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}