DayOfWeek 列挙体
アセンブリ: mscorlib (mscorlib.dll 内)

<SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public Enumeration DayOfWeek

メンバ名 | 説明 | |
---|---|---|
![]() | Friday | 金曜日を示します。 |
![]() | Monday | 月曜日を示します。 |
![]() | Saturday | 土曜日を示します。 |
![]() | Sunday | 日曜日を示します。 |
![]() | Thursday | 木曜日を示します。 |
![]() | Tuesday | 火曜日を示します。 |
![]() | Wednesday | 水曜日を示します。 |

DayOfWeek 列挙型は、1 週間が 7 日ある予定表の曜日を表します。この列挙型の範囲は、日曜日を示す 0 から土曜日を示す 6 までです。
この列挙型は、曜日を厳密に型指定する必要がある場合に役立ちます。たとえば、この列挙型は DateTime.DayOfWeek プロパティのプロパティ値の型です。

DateTime.DayOfWeek プロパティおよび DayOfWeek 列挙体の例を次に示します。
' This example demonstrates the DateTime.DayOfWeek property Imports System Class Sample Public Shared Sub Main() ' Assume the current culture is en-US. ' Create a DateTime for the first of May, 2003. Dim dt As New DateTime(2003, 5, 1) Console.WriteLine("Is Thursday the day of the week for {0:d}?: {1}", _ dt, dt.DayOfWeek = DayOfWeek.Thursday) Console.WriteLine("The day of the week for {0:d} is {1}.", dt, dt.DayOfWeek) End Sub 'Main End Class 'Sample ' 'This example produces the following results: ' 'Is Thursday the day of the week for 5/1/2003?: True 'The day of the week for 5/1/2003 is Thursday. '
// This example demonstrates the DateTime.DayOfWeek property using System; class Sample { public static void Main() { // Assume the current culture is en-US. // Create a DateTime for the first of May, 2003. DateTime dt = new DateTime(2003, 5, 1); Console.WriteLine("Is Thursday the day of the week for {0:d}?: {1}", dt, dt.DayOfWeek == DayOfWeek.Thursday); Console.WriteLine("The day of the week for {0:d} is {1}.", dt, dt.DayOfWeek); } } /* This example produces the following results: Is Thursday the day of the week for 5/1/2003?: True The day of the week for 5/1/2003 is Thursday. */
// This example demonstrates the DateTime.DayOfWeek property using namespace System; int main() { // Assume the current culture is en-US. // Create a DateTime for the first of May, 2003. DateTime dt = DateTime(2003,5,1); Console::WriteLine( "Is Thursday the day of the week for {0:d}?: {1}", dt, dt.DayOfWeek == DayOfWeek::Thursday ); Console::WriteLine( "The day of the week for {0:d} is {1}.", dt, dt.DayOfWeek ); } /* This example produces the following results: Is Thursday the day of the week for 5/1/2003?: True The day of the week for 5/1/2003 is Thursday. */
// This example demonstrates the DateTime.DayOfWeek property import System.*; class Sample { public static void main(String[] args) { // Assume the current culture is en-US. // Create a DateTime for the first of May, 2003. DateTime dt = new DateTime(2003, 5, 1); Console.WriteLine("Is Thursday the day of the week for {0:d}?: {1}", dt, (System.Boolean)(dt.get_DayOfWeek() == DayOfWeek.Thursday)); Console.WriteLine("The day of the week for {0:d} is {1}.", dt, dt.get_DayOfWeek()); } //main } //Sample /* This example produces the following results: Is Thursday the day of the week for 5/1/2003?: True The day of the week for 5/1/2003 is Thursday. */

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- DayOfWeek 列挙体のページへのリンク