Skip to content

Instantly share code, notes, and snippets.

View a4186597's full-sized avatar

Moriarty a4186597

View GitHub Profile
@a4186597
a4186597 / Program.cs
Created March 27, 2018 05:42 — forked from DanielSWolf/Program.cs
Console progress bar. Code is under the MIT License: http://opensource.org/licenses/MIT
using System;
using System.Threading;
static class Program {
static void Main() {
Console.Write("Performing some task... ");
using (var progress = new ProgressBar()) {
for (int i = 0; i <= 100; i++) {
progress.Report((double) i / 100);