System Namespace
Specifies the day of the week.
Member name |
Description |
Friday |
Indicates Friday. |
Monday |
Indicates Monday. |
Saturday |
Indicates Saturday. |
Sunday |
Indicates Sunday. |
Thursday |
Indicates Thursday. |
Tuesday |
Indicates Tuesday. |
Wednesday |
Indicates Wednesday. |
The DayOfWeek enumeration represents the day of the week in calendars that have seven days per week. This enumeration ranges from zero, indicating Sunday, to six, indicating Saturday.
This enumeration is useful when it is desirable to have a strongly typed specification of the day of the week. For example, this enumeration is the type of the DateTime.DayOfWeek property.
Show me