ChangeLog 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. Tue Sep 25 18:54:06 CEST 2001 Paolo Molaro <[email protected]>
  2. * File.cs: fix signatures of the Open() and OpenRead() functions
  3. (they are static).
  4. Thu Sep 13 18:04:23 CEST 2001 Paolo Molaro <[email protected]>
  5. * FileLoadException.cs, FileNotFoundException.cs: added.
  6. 2001-08-28 Dietmar Maurer <[email protected]>
  7. * TextReader.cs: implemented the Read method
  8. * StreamReader.cs: impl. stubs
  9. * StreamWriter.cs: impl.
  10. * TextWriter.cs: implemented Write and WriteLine methods
  11. Sun Aug 26 23:01:41 CEST 2001 Paolo Molaro <[email protected]>
  12. * FileAccess.cs, FileMode.cs: change values to be compatible with
  13. the ms ones.
  14. Sun Aug 26 11:47:56 CEST 2001 Paolo Molaro <[email protected]>
  15. * IOException.cs: Implemented System.IO.Exception.
  16. 2001-07-18 Michael Lambert <[email protected]>
  17. *SeekOrigin.cs.cs, FileShare.cs, FileMode.cs, FileAccess.cs: Add.
  18. 2001-07-19 Marcin Szczepanski <[email protected]>
  19. * System.IO.MemoryStream.cs: Added. Had quite a few cases of
  20. "LAMESPEC", but the tests work against the MS implementation so
  21. the major functions are right (ie. Read/Write/Seek). Some more
  22. tests required for the various constructors and exceptions.
  23. 2001-07-16 Marcin Szczepanski <[email protected]>
  24. * StringReader.cs, StringWriter.cs, TextReader.cs, TextWriter.cs:
  25. New class implemenations.
  26. * StringReaderTest.cs, StringWriterTest.cs: Test suite for the above.