DateTimeOffset.Day プロパティ

定義

現在の DateTimeOffset オブジェクトによって表される月の日付を取得します。

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

プロパティ値

Int32

現在の DateTimeOffset オブジェクトの 1 ~ 31 の値で表される日付要素。

次の例では、3 つの異なる方法でオブジェクトの日コンポーネント DateTimeOffset を表示します。

  • プロパティの Day 値を取得します。

  • "d" 書式指定子を ToString(String) 使用してメソッドを呼び出す。

  • "dd" 書式指定子を使用してメソッドを呼び出 ToString(String) すこと。

DateTimeOffset theTime = new DateTimeOffset(2007, 5, 1, 16, 35, 0,
                                            DateTimeOffset.Now.Offset);
Console.WriteLine("The day component of {0} is {1}.",
                  theTime, theTime.Day);

Console.WriteLine("The day component of {0} is{1}.",
                  theTime, theTime.ToString(" d"));

Console.WriteLine("The day component of {0} is {1}.",
                  theTime, theTime.ToString("dd"));
// The example produces the following output:
//    The day component of 5/1/2007 4:35:00 PM -08:00 is 1.
//    The day component of 5/1/2007 4:35:00 PM -08:00 is 1.
//    The day component of 5/1/2007 4:35:00 PM -08:00 is 01.
let theTime = DateTimeOffset(2007, 5, 1, 16, 35, 0, DateTimeOffset.Now.Offset)
printfn $"The day component of {theTime} is {theTime.Day}."

printfn $"""The day component of {theTime} is{theTime.ToString " d"}."""

printfn $"The day component of {theTime} is {theTime:dd}."

// The example produces the following output:
//    The day component of 5/1/2007 4:35:00 PM -08:00 is 1.
//    The day component of 5/1/2007 4:35:00 PM -08:00 is 1.
//    The day component of 5/1/2007 4:35:00 PM -08:00 is 01.
Dim theTime As New DateTimeOffset(#5/1/2007 4:35PM#, _
                                       DateTimeOffset.Now.Offset)
Console.WriteLine("The day component of {0} is {1}.", _
                  theTime, theTime.Day)

Console.WriteLine("The day component of {0} is{1}.", _
                  theTime, theTime.ToString(" d"))

Console.WriteLine("The day component of {0} is {1}.", _
                  theTime, theTime.ToString("dd"))
' The example produces the following output:
'    The day component of 5/1/2007 4:35:00 PM -08:00 is 1.
'    The day component of 5/1/2007 4:35:00 PM -08:00 is 1.
'    The day component of 5/1/2007 4:35:00 PM -08:00 is 01.

注釈

このプロパティは Day 、プロパティの値の影響を Offset 受けません。

また、"d" または "dd" カスタム書式指定子を使用してメソッドをToString呼び出すことで、オブジェクトの日コンポーネントの文字列表現DateTimeOffsetを作成することもできます。

適用対象