Skip to content

Instantly share code, notes, and snippets.

View ErikMuir's full-sized avatar

Erik Muir ErikMuir

  • McClean Forrester
  • St. Louis, MO
  • 06:00 (UTC -06:00)
View GitHub Profile
@DanielSWolf
DanielSWolf / Program.cs
Last active November 9, 2025 21:44
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);