Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.IO/FileMode.cs')
-rw-r--r--mcs/class/corlib/System.IO/FileMode.cs45
1 files changed, 0 insertions, 45 deletions
diff --git a/mcs/class/corlib/System.IO/FileMode.cs b/mcs/class/corlib/System.IO/FileMode.cs
deleted file mode 100644
index c32a53408bf..00000000000
--- a/mcs/class/corlib/System.IO/FileMode.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-// FileMode.cs
-//
-// This code was automatically generated from
-// ECMA CLI XML Library Specification.
-// Generator: libgen.xsl [1.0; (C) Sergey Chaban (serge@wildwestsoftware.com)]
-// Created: Fri, 7 Sep 2001 16:32:13 UTC
-// Source file: AllTypes.xml
-// URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
-//
-// (C) 2001 Ximian, Inc. http://www.ximian.com
-
-
-namespace System.IO {
-
-
- /// <summary>
- /// </summary>
- public enum FileMode {
-
- /// <summary>
- /// </summary>
- CreateNew = 1,
-
- /// <summary>
- /// </summary>
- Create = 2,
-
- /// <summary>
- /// </summary>
- Open = 3,
-
- /// <summary>
- /// </summary>
- OpenOrCreate = 4,
-
- /// <summary>
- /// </summary>
- Truncate = 5,
-
- /// <summary>
- /// </summary>
- Append = 6,
- } // FileMode
-
-} // System.IO