How to write to a specific position in Console.GetOutputStream() in a Rebex File Server SSH session without clearing the console?
Hello everyone,
I am working on a C# console application and would like to write to a specific position in the console using Console.GetOutputStream(), but without calling Console.Clear() each time.
I know that in traditional console applications, we can use Console.SetCursorPosition(x, y), but when working with Console.GetOutputStream(), I am not sure how to achieve this.
Is there a way to move the write position in the output stream without clearing everything?
Can I update only certain parts of the console output efficiently?
Any help or insights would be greatly appreciated!
Thanks in advance!