Initial commit
[mono.git] / mcs / class / referencesource / System.Core / System / IO / Enums.cs
1 // ==++==
2 // 
3 //   Copyright (c) Microsoft Corporation.  All rights reserved.
4 // 
5 // ==--==
6 /*============================================================
7 **
8 ** Class:  Enums
9 **
10 **
11 ** Purpose: Enums shared by IO classes
12 **
13 **
14 ===========================================================*/
15
16 using System;
17 using System.Text;
18
19 namespace System.IO {
20
21     [Serializable]
22     public enum HandleInheritability {
23         None = 0,
24         Inheritable = 1,
25     }
26
27 }
28
29