DateTimeOffset.Minute 属性

定义

获取由当前 DateTimeOffset 对象所表示的时间的分钟组成部分。

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

属性值

Int32

当前 DateTimeOffset 对象的分钟组成部分,以 0 到 59 之间的一个整数来表示。

示例

以下示例以三种不同的方式显示对象的分钟组件 DateTimeOffset

DateTimeOffset theTime = new DateTimeOffset(2008, 5, 1, 10, 3, 0,
                                           DateTimeOffset.Now.Offset);
Console.WriteLine("The minute component of {0} is {1}.",
                  theTime, theTime.Minute);

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

Console.WriteLine("The minute component of {0} is {1}.",
                  theTime, theTime.ToString("mm"));
// 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.
let theTime = DateTimeOffset(2008, 5, 1, 10, 3, 0, DateTimeOffset.Now.Offset)
printfn $"The minute component of {theTime} is {theTime.Minute}."

printfn $"""The minute component of {theTime} is{theTime.ToString " m"}."""

printfn $"The minute component of {theTime} is {theTime:mm}."

// 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.
Dim theTime As New DateTimeOffset(#5/1/2008 10:03AM#, _
                                       DateTimeOffset.Now.Offset)
Console.WriteLine("The minute component of {0} is {1}.", _
                  theTime, theTime.Minute)

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

Console.WriteLine("The minute component of {0} is {1}.", _
                  theTime, theTime.ToString("mm"))
' 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.

注解

Minute 属性不受该属性的值 Offset 的影响。

还可以通过使用“m”或“mm”自定义格式说明符调用ToString方法来创建对象的分钟组件的字符串表示形式DateTimeOffset

适用于