I am learning C# and just started with VScode and it does not generate any of the defualt text my tutorial showed me such as this
using System;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
What am I supposed to do?