FirstDayOfWeek.cs 408 B

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