I've been trying to find a way to access and edit the c# console screen buffer for a terminal based text editor, and I would rather not have to "redraw" the screen every time I need to update it.
I have tried getting the stdout stream with Console.OpenStandardOutput()
and resetting the position but I get: System.NotSupportedException: Stream does not support seeking.
Any insight on how to do this would be amazing.