FirstDayOfWeek.cs 466 B

123456789101112131415161718192021222324252627
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Enumeration: FirstDayOfWeek
  4. *
  5. * Author: Gaurav Vaish
  6. * Maintainer: [email protected]
  7. * Contact: <[email protected]>, <[email protected]>
  8. * Implementation: yes
  9. * Status: 100%
  10. *
  11. * (C) Gaurav Vaish (2001)
  12. */
  13. namespace System.Web.UI.WebControls
  14. {
  15. public enum FirstDayOfWeek
  16. {
  17. Sunday,
  18. Monday,
  19. Tuesday,
  20. Wednesday,
  21. Thursday,
  22. Friday,
  23. Saturday,
  24. Default
  25. }
  26. }