lalala
[mono.git] / mcs / class / corlib / System.IO / ChangeLog
index c45bed5fd1cf3e4a2b1ae679af1d02f42691a34f..bb20c936c2068df5435de79c3f4a7b1413911993 100644 (file)
@@ -1,3 +1,21 @@
+2004-04-01  Lluis Sanchez Gual  <lluis@ximian.com>
+
+       * BufferedStream.cs: On Position change, do not reset the buffer if the
+       new position is in the limits of the buffer. This fixes #49403.
+
+2003-04-03  Atsushi Enomoto <atsushi@ximian.com>
+
+       * Path.cs : ChangeExtension() does not remove dot(.) when extension is
+         an empty string.
+
+2004-04-01  Lluis Sanchez Gual  <lluis@ximian.com>
+
+       * FileSystemInfo.cs: Added InternalRefresh, a virtual method that derived
+         classes can override to perform class specific refreshing.
+       * FileInfo.cs: Refresh existence flag when Refresh is called.
+       * TextWriter.cs: Applied patch by Benjamin Jemlich for bug #52512.
+         The method Write(char) should do nothing by default.
+
 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
 
        * BinaryReader.cs: don't modify the underlying stream in Peek(). Fixes