| 12345678910111213141516171819202122 |
- //------------------------------------------------------------------------------
- //
- // System.IO.FileAccess.cs
- //
- // Copyright (C) 2001 Michael Lambert, All Rights Reserved
- //
- // Author: Michael Lambert, [email protected]
- // Created: Thu 07/18/2001
- //
- //------------------------------------------------------------------------------
- namespace System.IO
- {
- public enum FileAccess
- {
- Read,
- ReadWrite,
- Write,
- }
- } // Namespace
|