DateTime.DayOfWeek Vlastnost

Definice

Získá den v týdnu reprezentovaný touto instancí.

public:
 property DayOfWeek DayOfWeek { DayOfWeek get(); };
public DayOfWeek DayOfWeek { get; }
member this.DayOfWeek : DayOfWeek
Public ReadOnly Property DayOfWeek As DayOfWeek

Hodnota vlastnosti

DayOfWeek

Výčtová konstanta, která označuje den v týdnu této DateTime hodnoty.

Příklady

Následující příklad ukazuje vlastnost DayOfWeek a System.DayOfWeek výčet.

// 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
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
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
End Class
'
'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.
'

Poznámky

Hodnota konstant ve výčtu DayOfWeek je v rozsahu od do DayOfWeek.Sunday DayOfWeek.Saturday . Pokud se přetypuje na celé číslo, jeho hodnota je v rozsahu od nuly (což označuje DayOfWeek.Sunday ) do šesti (což označuje DayOfWeek.Saturday ).

Vlastnost DayOfWeek vrátí výčtovou konstantu, která neodráží místní a jazykové nastavení systému. Pokud chcete načíst řetězec představující lokalizovaný název dne v týdnu pro konkrétní datum, zavolejte jedno z přetížení metody, které obsahuje parametr, a předejte mu buď řetězce vlastního formátu, nebo ToString format ddd dddd . Podrobnosti najdete v tématu Postupy: Extrahování dne v týdnu z konkrétního data.

Platí pro

Viz také