This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,22 @@
using System;
using System.Runtime.InteropServices;
namespace System.Globalization
{
/// <summary>Defines different rules for determining the first week of the year.</summary>
// Token: 0x02000169 RID: 361
[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: 0x0400046C RID: 1132
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: 0x0400046D RID: 1133
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: 0x0400046E RID: 1134
FirstFourDayWeek
}
}