1
vote
How can I determine whether Console.Out has been redirected to a file?
You need to use reflection - a bit grubby but the following will work:
static bool IsConsoleRedirected()
{
var writer = Console.Out;
if (writer == null || writer.GetType (). …
