Skip to content

Instantly share code, notes, and snippets.

View F1nn-T's full-sized avatar
🎯
Focusing

Finn Trefzer F1nn-T

🎯
Focusing
  • Trefzer IT software&consulting GmbH
  • Germany
  • 04:29 (UTC +01:00)
View GitHub Profile
@F1nn-T
F1nn-T / Program.cs
Created February 28, 2021 19:44 — 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);