2
0

FirstDayOfWeek.cs 442 B

1234567891011121314151617181920212223242526
  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. * Status: 100%
  9. *
  10. * (C) Gaurav Vaish (2001)
  11. */
  12. namespace System.Web.UI.WebControls
  13. {
  14. public enum FirstDayOfWeek
  15. {
  16. Sunday,
  17. Monday,
  18. Tuesday,
  19. Wednesday,
  20. Thursday,
  21. Friday,
  22. Saturday,
  23. Default
  24. }
  25. }