DateTimeOffset.Day Property
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Gets the day of the month represented by the current DateTimeOffset object.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public ReadOnly Property Day As Integer
public int Day { get; }
Property Value
Type: System.Int32
The day component of the current DateTimeOffset object, expressed as a value between 1 and 31.
Remarks
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.
Examples
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.
DateTimeOffset theTime = new DateTimeOffset(2007, 5, 1, 16, 35, 0,
DateTimeOffset.Now.Offset);
outputBlock.Text += String.Format("The day component of {0} is {1}.",
theTime, theTime.Day) + "\n";
outputBlock.Text += String.Format("The day component of {0} is{1}.",
theTime, theTime.ToString(" d")) + "\n";
outputBlock.Text += String.Format("The day component of {0} is {1}.",
theTime, theTime.ToString("dd")) + "\n";
// 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.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.