Click here to Skip to main content
15,890,527 members
Everything / Console

Console

console

Great Reads

by Marco-Hans Van Der Willik
This article continues with the development of the SOLID Poker project, and covers functionality to Compare and Validate Poker Hands.
by Robert S Sharp
I'm not sure that GC would matter very much in such a simple app.But, it's either a call to Dispose on your SmtpClient after you're done using it:smtp.Dispose();or use a using:using (SmtpClient smtp = new SmtpClient{ Host = "smtp.gmail.com", Port = 587, Credentials = new...
by Sunasara Imdadhusen
MS Test Result Viewer is a free open source library to convert MS Test result (.trx) file into HTML. It is also allowed you to perform MS Test on your test container project (.dll) file. This utility will work with simple command line arguments to generate test report in HTML format with excellent U
by Athari
CsConsoleFormat library for .NET - Formatting in Console using modern technologies

Latest Articles

by M@dHatter
Access private fields from Chained Extended classes
by Kenji Elzerman
A simple tutorial with some code of how to read text from an image with Azure Computer Vision
by SiretT
Console app to share internet connection with other network interface
by Shmuel Zang
Simple Java helper class to print colored text in console window.

All Articles

Sort by Updated

Console 

16 Jan 2023 by M@dHatter
Access private fields from Chained Extended classes
9 Mar 2022 by SiretT
Console app to share internet connection with other network interface
24 Feb 2022 by Shmuel Zang
Simple Java helper class to print colored text in console window.
6 Jan 2020 by honey the codewitch
Easily add progress reporting to your console apps
14 Aug 2019 by DaveAuld
Object inspection with %O in the console output
31 Oct 2018 by Arun Babu Madhavan
Extension method to throttle multiple Tasks in C#
3 Mar 2018 by ruben rick
This simple code displays a perlin noise like example.
9 Nov 2017 by yuvalsol
Print DataTable, DataView, DataSet, DataRow[] to Console, StringBuilder or Stream
9 Dec 2016 by Shesh Lamichhane
Step by step to add the transformation files of app.config in your .NET Windows service
11 Jul 2016 by Alberto Nuti
In a console application, there is often the need to ask (and validate) some data from users. For this reason, I have created a function that makes use of generics and delegates to speed up programming.
18 Apr 2016 by Ryan Scott White
Draw rectangles in a C# console window with this drop-in class
19 Oct 2014 by Abhijit Ghosh (Subho)
This is an alternative for "Creating a Issue in Jira using Rest API". This is an upgraded version as it contains a way of sending attachments with the issue. This version doesn't use MSXML as it is not recommended by Microsoft.
23 May 2014 by TheTrigger
Coloring the window console
19 Nov 2013 by JohnLeitch
ConsolePlus aims to build upon the existing System.Console class by offering a styling language for coloring console output. This enables developers to create applications with rich console output, while minimizing boilerplate code.
27 Mar 2013 by metastruct
When WebClient, HttpRequest, and all else fail, BITSadmin solves your download woes
27 Mar 2013 by metastruct
Easy to use class for downloading, uploading, and other FTP commands.
23 Mar 2013 by AfnanMof
Steps How to Develop Sharepoint Windows Forms
1 Feb 2013 by aaverian
A very simple console progress bar.
19 Mar 2012 by Mukit, Ataul
sometimes console applications give runtime error when you declare static varialbes, so here is a solution how to deal with it
27 Feb 2012 by N8tiv
Simple SMTP E-Mail Sender in C#… Console application
2 Feb 2012 by Member 3896609
try{ FileOutputStream fout= new FileOutputStream("stdout.log"); FileOutputStream ferr= new FileOutputStream("stderr.log"); TeeOutputStream multiOut= new TeeOutputStream(System.out, fout); TeeOutputStream multiErr= new TeeOutputStream(System.err, ferr); ...
17 Jan 2012 by Lodewijk Pool
A quick and easy way to direct Java System.out to File and to Console.
19 Dec 2011 by Robert S Sharp
I'm not sure that GC would matter very much in such a simple app.But, it's either a call to Dispose on your SmtpClient after you're done using it:smtp.Dispose();or use a using:using (SmtpClient smtp = new SmtpClient{ Host = "smtp.gmail.com", Port = 587, Credentials = new...