I've been learning C# for 3 weeks now so still covering the basics.
My question:
At the end of a program (a simple currency converter, for example), when the user chooses to exit the program (rather than perform another calculation) is it possible to time a Console.Writeline to remain visible before a break?
Code:
Console.WriteLine("Would you like to perform another conversion?");
Console.WriteLine("");
Console.WriteLine("y for YES");
Console.WriteLine("e for EXIT");
decision = Console.ReadLine();
if (decision.Equals("E", StringComparison.OrdinalIgnoreCase))
{
Console.WriteLine("Thank-you for using CurrencyConverter");
break;
...
//is it possible to have the writeline above hang around for a couple of seconds for readability before the program terminates?
Yes, absolutely: you can use
System.Threading.Thread.Sleep(3000)
, where the argument is the delay in miliseconds.