I couldn't find solution in the former questions. Please help. I want to do more excercises and run them differently. Like now run the Excercise1() and I can just run it differently. I should need a fuction, which calls the excercises. I couldn't do that, but if I have 1 Excercise, it also doesn't work, because of "CS5001 C# Program does not contain a static 'Main' method suitable for an entry point". Sorry if my question is trivial, for me not. Can you help me to fix it this main method?
using System;
namespace normal
{
public class Program
{
public static void Excercise1()
{}
//I want something like this more:
public static void Excercise2()
{ }
}
}