This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,27 @@
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
}
}