DayOfWeek Sabit listesi

Tanım

Haftanın gününü belirtir.

public enum class DayOfWeek
public enum DayOfWeek
[System.Serializable]
public enum DayOfWeek
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum DayOfWeek
type DayOfWeek = 
[<System.Serializable>]
type DayOfWeek = 
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type DayOfWeek = 
Public Enum DayOfWeek
Devralma
DayOfWeek
Öznitelikler

Alanlar

Friday 5

Cuma'ya işaret eder.

Monday 1

Pazartesi'ye işaret eder.

Saturday 6

Cumartesi'ye işaret eder.

Sunday 0

Pazar'a işaret eder.

Thursday 4

Perşembe'ye işaret eder.

Tuesday 2

Salı'ya işaret eder.

Wednesday 3

Çarşamba'ya işaret eder.

Örnekler

Aşağıdaki örnekte özelliği ve DayOfWeek sabit listesi gösterilmektedirDateTime.DayOfWeek.

// 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
open System

// Assume the current culture is en-US.
// Create a DateTime for the first of May, 2003.
let dt = DateTime(2003, 5, 1)
printfn $"Is Thursday the day of the week for {dt:d}?: {dt.DayOfWeek = DayOfWeek.Thursday}"
printfn $"The day of the week for {dt:d} is {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.
'

Açıklamalar

Numaralandırma, DayOfWeek haftada yedi günü olan takvimlerde haftanın gününü temsil eder. Bu sabit listesindeki sabitlerin değeri Pazar ile Cumartesi arasında değişir. Bir tamsayıya yayınlanırsa, değeri sıfırdan (Pazar'ı gösterir) altıya (Cumartesi'yi gösterir) arasında değişir.

Bu numaralandırma, haftanın gününe ilişkin kesin olarak belirlenmiş bir belirtime sahip olmak istendiğinde yararlıdır. Örneğin, bu numaralandırma ve DateTimeOffset.DayOfWeek özellikleri için özellik değerinin DateTime.DayOfWeek türüdür.

Numaralandırmanın DayOfWeek üyeleri yerelleştirilmemiş. Haftanın gününün yerelleştirilmiş adını döndürmek için veya DateTime.ToString(String, IFormatProvider) yöntemini "ddd" veya "dddd" biçim dizeleriyle çağırınDateTime.ToString(String). Eski biçim dizesi kısaltılmış hafta içi adını üretir; ikinci, tam hafta içi adını üretir.

Şunlara uygulanır