Welcome to SharpBar
Simple progress bar for your C# console application.
This is companion repository for nuget package publish guide available here.
Usage
// include namespace
using SharBar;
// use WithProgress() extension
foreach (var i in collection.WithProgress())
{
// do stuff ...
}