Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CalendarWeekRule.cs « System.Globalization « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 936a56e846976a87a937daa6e680bd298219c49c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// ::MONO
//
// System.Globalization.CalendarWeekRule.cs
//
// Copyright (C) Wictor Wilén 2001 (wictor@iBizkit.se)
//
// 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

	}

}