ChangeLog 1.2 KB

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