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.

Colorized Ruby output to the terminal

Using Ruby, how can I perform background and foreground text colorization for output in the terminal? I remember, when programming …

ruby colors console-application
How to navigate a few folders up?

One option would be to do System.IO.Directory.GetParent() a few times. Is there a more graceful way of …

c# .net console-application
.NET console application as Windows service

I have console application and would like to run it as Windows service. VS2010 has project template which allow to …

c# .net-4.0 windows-services console-application
Hide console window from Process.Start C#

I am trying to create process on a remote machine using using System.Diagnostics.Process class. I am able to …

c# process console-application
How to write Unicode characters to the console?

I was wondering if it was possible, in a console application, to write characters like ℃ using .NET. When I try …

c# .net vb.net console-application
How to keep console window open

When I run my program, the console window seems to run and close. How to keep it open so I …

c# console-application
System.drawing namespace not found under console application

I selected console application as my C# project. But the imports that seemed to work under windows form project doesnt …

c# namespaces bitmap console-application
How to run .NET Core console app from the command line

I have a .NET Core console app and have run dotnet publish. However, I can't figure out how to run …

.net-core command-line console-application
ASP.NET Core configuration for .NET Core console application

ASP.NET Core support a new configuration system as seen here: https://docs.asp.net/en/latest/fundamentals/configuration.html …

c# .net-core configuration console-application
how to run a winform from console application?

How do I create, execute and control a winform from within a console application?

c# winforms console-application