| 12345678910111213141516171819202122232425 |
- //------------------------------------------------------------------------------
- //
- // System.IO.FileMode.cs
- //
- // Copyright (C) 2001 Michael Lambert, All Rights Reserved
- //
- // Author: Michael Lambert, [email protected]
- // Created: Thu 07/18/2001
- //
- //------------------------------------------------------------------------------
- namespace System.IO
- {
- public enum FileMode
- {
- Append,
- Create,
- CreateNew,
- Open,
- OpenOrCreate,
- Truncate,
- }
- } // Namespace
|