Multiple User Inputs
If I am making a Program in C# like a question game, and I am trying to get my program to run a question after the user has answered, how would I put this into code? P.S I'm still learning C# but I am curious as to user inputs the code I am writing is below. namespace Hacker_Experiance1 { class Game { static void Main(string[]args) { string yourName; Console.WriteLine("Wh47 i2 y0ur h4ck3r n4m3?"); yourName = Console.ReadLine(); Console.WriteLine("W3lc0m3 {0}", yourName); int age = Convert.Toint34(Console.ReadLine()); Console.WriteLine("Agent", yourName, "You are {0} years old", age); } } }