I have a program that is GUI that builds my project and saves the logs in some folder.
I also run it using cmd and it works fine
but when I want to redirect it - it just breaks:
it offers me to debug it - and it shows me this line :
if (startPosition == 0)
{
Console.Write(s);
}
else
{
Console.CursorLeft = 70; //THIS LINE
Console.WriteLine(s);
}
can anyone help me understanding what is wring here? thank you!