This is the most basic code there is. I'm working in visual studio 17.5.4, ASP.NET is 17.5.318.41597.
Im not new to programming but I'm new to c# and visual studio so I dunno if there is some weird setting or something I am not seeing.
using System;
class HelloWorld
{
public static void Main()
{
Console.WriteLine("Hello World");
}
}