Answers for "c# keep console open"

C#
0

c# keep console open

//Put a Console.Read() as the last line in your program. 
//That will prevent it from closing until you press a key

Console.Read();
Posted by: Guest on April-16-2021

C# Answers by Framework

Browse Popular Code Answers by Language