Answers for "keep console application running c#"

C#
1

how to make a new console application in c#

dotnet new console -o myApp
Posted by: Guest on June-23-2021
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

Code answers related to "keep console application running c#"

C# Answers by Framework

Browse Popular Code Answers by Language