Skip to content

Instantly share code, notes, and snippets.

@DanielSWolf
DanielSWolf / Program.cs
Last active March 12, 2024 02:58
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);