Day Property

DateTimeOffset.Day Property

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Gets the day of the month represented by the current DateTimeOffset object.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

'Declaration
Public ReadOnly Property Day As Integer

Property Value

Type: System.Int32
The day component of the current DateTimeOffset object, expressed as a value between 1 and 31.

The Day property is not affected by the value of the Offset property.

You can also create a string representation of a DateTimeOffset object's day component by calling the ToString method with the "d" or "dd" custom format specifiers.

The following example displays the day component of a DateTimeOffset object in three different ways:

  • By retrieving the value of the Day property.

  • By calling the ToString(String) method with the "d" format specifier.

  • By calling the ToString(String) method with the "dd" format specifier.


Dim theTime As New DateTimeOffset(#5/1/2007 4:35:00 PM#, _
                                       DateTimeOffset.Now.Offset)
outputBlock.Text &= String.Format("The day component of {0} is {1}.", _
                  theTime, theTime.Day) & vbCrLf

outputBlock.Text &= String.Format("The day component of {0} is{1}.", _
                  theTime, theTime.ToString(" d")) & vbCrLf

outputBlock.Text &= String.Format("The day component of {0} is {1}.", _
                  theTime, theTime.ToString("dd")) & vbCrLf
' 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.


Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft