DateTimeOffset.Minute Property

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Gets the minute component of the time represented by the current DateTimeOffset object.

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

Syntax

'Declaration
Public ReadOnly Property Minute As Integer
public int Minute { get; }

Property Value

Type: System.Int32
The minute component of the current DateTimeOffset object, expressed as an integer between 0 and 59.

Remarks

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

You can also create a string representation of a DateTimeOffset object's minute component by calling the ToString method with the "m", or "mm" custom format specifiers.

Examples

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

  • By retrieving the value of the Minute property.

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

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

Dim theTime As New DateTimeOffset(#5/1/2008 10:03:00 AM#, _
                                       DateTimeOffset.Now.Offset)
outputBlock.Text &= String.Format("The minute component of {0} is {1}.", _
                  theTime, theTime.Minute) & vbCrLf

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

outputBlock.Text &= String.Format("The minute component of {0} is {1}.", _
                  theTime, theTime.ToString("mm")) & vbCrLf
' The example produces the following output:
'    The minute component of 5/1/2008 10:03:00 AM -08:00 is 3.
'    The minute component of 5/1/2008 10:03:00 AM -08:00 is 3.
'    The minute component of 5/1/2008 10:03:00 AM -08:00 is 03.
DateTimeOffset theTime = new DateTimeOffset(2008, 5, 1, 10, 3, 0,
                                           DateTimeOffset.Now.Offset);
outputBlock.Text += String.Format("The minute component of {0} is {1}.",
                  theTime, theTime.Minute) + "\n";

outputBlock.Text += String.Format("The minute component of {0} is{1}.",
                  theTime, theTime.ToString(" m")) + "\n";

outputBlock.Text += String.Format("The minute component of {0} is {1}.",
                  theTime, theTime.ToString("mm")) + "\n";
// The example produces the following output:
//    The minute component of 5/1/2008 10:03:00 AM -08:00 is 3.
//    The minute component of 5/1/2008 10:03:00 AM -08:00 is 3.
//    The minute component of 5/1/2008 10:03:00 AM -08:00 is 03.

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.