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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!