summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/DayOfWeek.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/DayOfWeek.cs')
-rw-r--r--src/mscorlib/src/System/DayOfWeek.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/mscorlib/src/System/DayOfWeek.cs b/src/mscorlib/src/System/DayOfWeek.cs
deleted file mode 100644
index 5d84257158..0000000000
--- a/src/mscorlib/src/System/DayOfWeek.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-// Licensed to the .NET Foundation under one or more agreements.
-// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
-
-/*============================================================
-**
-**
-**
-** Purpose: Enum for the day of the week.
-**
-**
-============================================================*/
-
-namespace System
-{
- [Serializable]
- public enum DayOfWeek
- {
- Sunday = 0,
- Monday = 1,
- Tuesday = 2,
- Wednesday = 3,
- Thursday = 4,
- Friday = 5,
- Saturday = 6,
- }
-}