Skip to content

Instantly share code, notes, and snippets.

View netcore-jroger's full-sized avatar
🎯
Focusing

JRoger netcore-jroger

🎯
Focusing
View GitHub Profile
@netcore-jroger
netcore-jroger / ProgressBar.cs
Created June 24, 2020 06:33 — forked from granddalf/ProgressBar.cs
ProgressBar in Console C#
using System;
using System.Text;
using System.Threading;
/// <summary>
/// An ASCII progress bar
/// </summary>
public class ProgressBar : IDisposable, IProgress<double> {
private const int blockCount = 10;
private readonly TimeSpan animationInterval = TimeSpan.FromSeconds(1.0 / 8);