public static void Main()
Console.WriteLine("Welcome to the testing zone! Please select a program from this list:");
public static void HelloWorld()
Console.WriteLine("Hello World!");
public static void Message()
Console.WriteLine("Please insert message here");
string Mes = Console.ReadLine();
public static void AddString()
Console.WriteLine("Insert String 1:");
string Msg1 = Console.ReadLine();
Console.WriteLine("Insert String 2:");
string Msg2 = Console.ReadLine();
Console.WriteLine(Msg1 + Msg2);
public static void ForInTxt()
Console.WriteLine("How many times would you like to type Hello World?");
string msg = Console.ReadLine();
public static void fianlText()
Console.WriteLine("Create message:");