Index: Console.cs
===================================================================
RCS file: /cvs/public/mcs/class/corlib/System/Console.cs,v
retrieving revision 1.7
diff -u -r1.7 Console.cs
--- Console.cs	1 Apr 2002 06:07:40 -0000	1.7
+++ Console.cs	16 May 2002 09:11:13 -0000
@@ -20,7 +20,9 @@
 		static Console ()
 		{
 			stderr = new StreamWriter (OpenStandardError ());
+			((StreamWriter)stderr).AutoFlush = true;
 			stdout = new StreamWriter (OpenStandardOutput ());
+			((StreamWriter)stdout).AutoFlush = true;
 			stdin  = new StreamReader (OpenStandardInput ());
 		}
 
