Given the following C# program outputting False, inject a 'malicious' line of code such that the program outputs True.
class Program
{
static void Main()
{
System.Console.Write("False");
;
}
}
Your answer should consist of a string that replaces the second semicolon, and causes the program to output True, the whole True and nothing but True (not even a newline). It must do this if stdout is printed to the console, and if stdout is redirected to a file.
The shortest answer wins.