5 ms·
On Linux, .NET does write ANSI escape sequences to stdout for you. ConsolePal.Unix.cs (Pal in this context referring to 'platform abstraction layer') does the w
by saulr 5y ago
On Linux, .NET does write ANSI escape sequences to stdout for you. ConsolePal.Unix.cs (Pal in this context referring to 'platform abstraction layer') does the work for you behind the scenes: https://github.com/dotnet/runtime/blob/10eb1a9ff1c09de4a2a1faa8cb372213c0813708/src/libraries/System.Console/src/System/ConsolePal.Unix.cs#L771 https://github.com/dotnet/runtime/blob/10eb1a9ff1c09de4a2a1f...