Every time I try to run the code in this project, even if I haven’t added anything yet, I get the error message: Program doe not contain a static ‘Main’ method suitable for an entry point.
For the record, this is the code that the project loads with:
using System;
namespace ChooseYourOwnAdventure
{
class Program
{
static void Main(string args)
{
/* THE MYSTERIOUS NOISE */
// Start by asking for the user's name:
Console.Write("What is your name?: ");
string name = Console.ReadLine();
Console.WriteLine($"Hello, {name}! Welcome to our story.");
}
}
}