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 do I compile my App.config into my exe in a VS2010 C# console app?

I'm creating a console app in Visual Studio 2010 with c#. I want this app to be stand alone, in that …

c# .net visual-studio-2010 .net-3.5 console-application
Is there a way to delete a character that has just been written using Console.WriteLine?

Is there any way to delete the last character from the console, i.e. Console.WriteLine("List: apple,pear,"); // Somehow …

c# console console-application console.writeline
How to draw a rectangle in console application?

I need to draw a rectangle, with a number inside, in a C# console app and using extended ASCII. How …

c# .net console console-application extended-ascii
Download multiple files async and wait for all of them to finish before executing the rest of the code

I am trying to download multiple files from the internet and await for all of them to finish. This is …

c# download async-await console-application
Run console application from other console app

I have a C# console application (A). I want to execute other console app (B) from within app A (in …

c# console-application
HttpUtility.UrlEncode in console application

I'd like to use HttpUtility.UrlEncode in a console application, VB.NET, VS 2010 Beta 2. System.Web.HttpUtility.UrlEncode(item) Error …

.net vb.net visual-studio-2010 console-application urlencode
Use wc on all subdirectories to count the sum of lines

How can I count all lines of all files in all subdirectories with wc? cd mydir wc -l * .. 11723 total man …

linux bash text-files console-application
Debugging: Attach to Process for Console App running inside cmd.exe

How do you "Attach to Process..." for a console application thats running from a CMD window and not launched by …

c# debugging console-application
C# arrow key input for a console app

I have a simple console app written in C#. I want to be able to detect arrow key presses, so …

c# console-application user-input
Python Terminal/Text UI (TUI) library

How can I make a console GUI (more appropriately called TUI) ? It's important to note that I will be changing …

python user-interface console console-application tui