Top "Console-application" questions

A console application is a computer program designed to be used via a text-only computer interface, such as a text terminal, the command line interface of some operating systems (Unix, DOS, etc.

How can I get the application's path in a .NET console application?

How do I find the application's path in a console application? In Windows Forms, I can use Application.StartupPath to …

c# .net console console-application
How to stop C# console applications from closing automatically?

My console applications on Visual Studio are closing automatically, so I'd like to use something like C's system("PAUSE") to "…

c# console-application
Could not load file or assembly ... An attempt was made to load a program with an incorrect format (System.BadImageFormatException)

I have two projects, ProjectA and ProjectB. ProjectB is a console application, which depends on ProjectA. Yesterday, everything was working …

c# exception console-application badimageformatexception
How do I launch the Android emulator from the command line?

I'm on Mac, working on Android development from the terminal. I have successfully created the HelloWorld project and now I'm …

android command-line android-emulator console console-application
How do you clear the console screen in C?

Is there a "proper" way to clear the console window in C, besides using system("cls")?

c windows console console-application
What is the command to exit a Console application in C#?

What is the command in C# for exit a Console Application?

c# console-application exit
Why is the console window closing immediately once displayed my output?

I'm studying C# by following the guides in MSDN. Now, I just tried the Example 1 (here is the link to …

c# .net console-application msdn
How do I show a console output/window in a forms application?

To get stuck in straight away, a very basic example: using System; using System.Windows.Forms; class test { static void …

c# winforms compilation console-application
Listen for key press in .NET console app

How can I continue to run my console application until a key press (like Esc is pressed?) I'm assuming its …

c# console-application
Compile to a stand-alone executable (.exe) in Visual Studio

how can I make a stand-alone exe in Visual Studio. Its just a simple Console application that I think users …

c# c++ visual-studio executable console-application