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 clear console

As in the title. How can I clear console in C++?

c++ windows console-application dev-c++
How to display list items on console window in C#

I have a List which contains all databases names. I have to dispaly the items contained in that list in …

c# console-application
Command to close an application of console?

I need to close the console when the user selects a menu option. I tried using close() but it did …

c# console console-application
Make the console wait for a user input to close

I have a console application that after performing its tasks, must give feedback to the user, such as "operation completed" …

java console-application
Can't specify the 'async' modifier on the 'Main' method of a console app

I am new to asynchronous programming with the async modifier. I am trying to figure out how to make sure …

c# .net asynchronous console-application
Show/Hide the console window of a C# console application

I googled around for information on how to hide one’s own console window. Amazingly, the only solutions I could …

c# console console-application
Can I write into the console in a unit test? If yes, why doesn't the console window open?

I have a test project in Visual Studio. I use Microsoft.VisualStudio.TestTools.UnitTesting. I add this line in one …

c# .net visual-studio unit-testing console-application
How to run a C# console application with the console hidden

Is there a way to hide the console window when executing a console application? I am currently using a Windows …

c# console-application
Compile to stand alone exe for C# app in Visual Studio 2010

Similar to this question Compile to a stand-alone executable (.exe) in Visual Studio But nothing there works for me. I've …

c# visual-studio-2010 console-application
Password masking console application

I tried the following code... string pass = ""; Console.Write("Enter your password: "); ConsoleKeyInfo key; do { key = Console.ReadKey(true); // Backspace …

c# passwords console-application user-input masking