If you want to get input from user in a terminal using c#, below is the program:-
Console.WriteLine("Enter words!");
String input = Console.ReadLine();
Console.WriteLine("You said " + input);
Once the user has inputted something and pressed the enter key, the c# program will display the below outcome:-
