NProg icon indicating copy to clipboard operation
NProg copied to clipboard

A simple progress tracking framework for .NET

Results 4 NProg issues
Sort by recently updated
recently updated
newest added

Useful in scenarios such as processing in batches. For example: ```c# tracker.ItemsStarted(100); tracker.ItemsSucceeded(100); tracker.ItemsFailed(100); ```

Also make initial count setable. We might not know it right away, or we might never know it. Many properties of `Progress` (`ItemsRemaining`, time estimates, etc.) will not work, so...

Sometimes start time is set implicitly (on first `ItemStarted` call). Could be nice to log something (or whatever) at this point, but keep that with rest of the setup logic...

It would be nice to support "sections", so that we can show different progress bars at the same time or one at a time. This would enable easy integration with...