28 lines
1.1 KiB
C#
28 lines
1.1 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Globalization
|
|
{
|
|
/// <summary>Defines different rules for determining the first week of the year.</summary>
|
|
// Token: 0x020002D3 RID: 723
|
|
[Token(Token = "0x20002D3")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public enum CalendarWeekRule
|
|
{
|
|
/// <summary>Indicates that the first week of the year starts on the first day of the year and ends before the following designated first day of the week. The value is 0.</summary>
|
|
// Token: 0x04000E53 RID: 3667
|
|
[Token(Token = "0x4000E53")]
|
|
FirstDay,
|
|
/// <summary>Indicates that the first week of the year begins on the first occurrence of the designated first day of the week on or after the first day of the year. The value is 1.</summary>
|
|
// Token: 0x04000E54 RID: 3668
|
|
[Token(Token = "0x4000E54")]
|
|
FirstFullWeek,
|
|
/// <summary>Indicates that the first week of the year is the first week with four or more days before the designated first day of the week. The value is 2.</summary>
|
|
// Token: 0x04000E55 RID: 3669
|
|
[Token(Token = "0x4000E55")]
|
|
FirstFourDayWeek
|
|
}
|
|
}
|