Multiple user input
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { string yourName; Console.WriteLine("What is your name?"); Console.WriteLine("Please write your name..."); yourName = Console.ReadLine(); Console.WriteLine("Hello {0}", yourName); Console.WriteLine("Thank you anyway... :-)"); Console.WriteLine("Your age..."); Convert.ToInt32(Console.Read()); Console.WriteLine("Got it"); } } } in this code snippet how to get multiple input where this code is getting input for the first time not for the second time. Thanks in advance.