| File: System\Windows\Forms\Controls\MonthCalendar\Day.cs | Web Access |
| Project: src\winforms\src\System.Windows.Forms\System.Windows.Forms.csproj (System.Windows.Forms) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Windows.Forms; /// <summary> /// Specifies the day of the week. /// </summary> public enum Day { /// <summary> /// The day Monday. /// </summary> Monday = 0, /// <summary> /// The day Tuesday. /// </summary> Tuesday = 1, /// <summary> /// The day Wednesday. /// </summary> Wednesday = 2, /// <summary> /// The day Thursday. /// </summary> Thursday = 3, /// <summary> /// The day Friday. /// </summary> Friday = 4, /// <summary> /// The day Saturday. /// </summary> Saturday = 5, /// <summary> /// The day Sunday. /// </summary> Sunday = 6, /// <summary> /// A default day of the week specified by the application. /// </summary> Default = 7, }