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