how to run a process (avrdude) in C# and get output live while the process is running?
If possible avrdude displays progress bars which I think updates last line with new progress like so:
Reading | ################################################## | 100% 0.01s
I would prefer ListBox but if possible to do that progress bar and it's not possible to do with listbox I will not mind.
I have tried many solutions, but one isn't working, another can't get ported from WPF to simple Windows forms, and the one I found that worked was somekind blocked I had to wait while that progress bar fills to get shown it.
Maybe someone knows how to get full output with all effects to C# app?