kbjradmin
New Member
- Messages
- 512
- Reaction score
- 2
- Points
- 0
i know that in a c# console application, you can write text to the screen with:
but is there some way to then modify the text i have already writen?
i am writing a program that processes information in batches and want to have a running total on the screen of many loops have been completed, but don't want to write a new line each time (because that just looks stupid).
please help.
Code:
Console.WriteLine("text...");
i am writing a program that processes information in batches and want to have a running total on the screen of many loops have been completed, but don't want to write a new line each time (because that just looks stupid).
please help.