DayOfWeek.cs 595 B

1234567891011121314151617181920212223242526
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. // See the LICENSE file in the project root for more information.
  4. /*============================================================
  5. **
  6. **
  7. **
  8. ** Purpose: Enum for the day of the week.
  9. **
  10. **
  11. ============================================================*/
  12. namespace System
  13. {
  14. public enum DayOfWeek
  15. {
  16. Sunday = 0,
  17. Monday = 1,
  18. Tuesday = 2,
  19. Wednesday = 3,
  20. Thursday = 4,
  21. Friday = 5,
  22. Saturday = 6,
  23. }
  24. }