Skip to content

Instantly share code, notes, and snippets.

View DanielSWolf's full-sized avatar

Daniel Wolf DanielSWolf

  • Munich, Germany
View GitHub Profile
@DanielSWolf
DanielSWolf / Program.cs
Last active April 18, 2024 09:09
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);
@DanielSWolf
DanielSWolf / esnextbin.md
Created May 29, 2017 09:27
esnextbin sketch