| 12345678910111213141516171819202122232425262728 |
- // ::MONO
- //
- // System.Globalization.CalendarWeekRule.cs
- //
- // Copyright (C) Wictor Wilén 2001 ([email protected])
- //
- // Contributors: Wictor Wilén
- //
- // Revisions
- // 2001-09-14: First draft
- // 2001-09-15: First release
- using System;
- namespace System.Globalization
- {
- /// <summary>
- /// The System.Globalization.CalendarWeekRule enumeration
- /// </summary>
- public enum CalendarWeekRule
- {
- FirstDay = 0,
- FirstFullWeek = 1,
- FirstFourDayWeek = 2
- }
- }
|