The usefull way of using switch statement :)
in this code i'm using switch statement to analyse user input :) you can use it in your way after understanding it.. if you have any problem regarding understanding you can reply to this post ;) dont forget to thumbs up :) static void Main(string[] args) { Console.Write("Enter Something for Checking : "); char choiceNumber; choiceNumber = Convert.ToChar(Console.ReadLine()); switch (choiceNumber) { case 'a': Console.WriteLine("something 1"); break; case 'b': Console.WriteLine("something 2"); break; case 'c': Console.WriteLine("something 3"); break; default: Console.WriteLine("You Failed :( "); break; } Console.ReadLine(); you can also use it with the int, bool or any other data types ;) try it