I'm trying to deal with a problem related to the console's output. I would want to keep the first line, but clear all the remaining output.
I found this link: ClearConsoleLine but it's not exactly ...
So, Is there any function that allow me to giving a line number(in this case line 0) clear the rest of the output?
EDIT: concerning one of the comments, this workaround of course is already used, it is the current state:
Console.Clear();
Console.WriteLine("CURRENT WORD DOCUMENT: {0}", docPath); //line I want to keep always as first line
Thank you.