Question: In C# I'm trying to call another method into my main? I.E. Internal class Program { static void Main { Prompt user to enter in
In C# I'm trying to call another method into my main? I.E.
Internal class Program
{
static void Main
{
Prompt user to enter in "Red", "Blue", "Green",
user enters "Red"
user enters "Blue"
user enters "Green"
user doesn't enter any of the above
}
public static void Red()
{
}
public static void Blue()
{
}
public static void Green()
{
}
public static void wrong input()
{
}
how do call those methods back to main?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
