2
0

FileMode.cs 528 B

12345678910111213141516171819202122232425
  1. //------------------------------------------------------------------------------
  2. //
  3. // System.IO.FileMode.cs
  4. //
  5. // Copyright (C) 2001 Michael Lambert, All Rights Reserved
  6. //
  7. // Author: Michael Lambert, [email protected]
  8. // Created: Thu 07/18/2001
  9. //
  10. //------------------------------------------------------------------------------
  11. namespace System.IO
  12. {
  13. public enum FileMode
  14. {
  15. Append,
  16. Create,
  17. CreateNew,
  18. Open,
  19. OpenOrCreate,
  20. Truncate,
  21. }
  22. } // Namespace