DateTimeOffset.Minute 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取由当前 DateTimeOffset 对象所表示的时间的分钟组成部分。
public:
property int Minute { int get(); };
public int Minute { get; }
member this.Minute : int
Public ReadOnly Property Minute As Integer
属性值
当前 DateTimeOffset 对象的分钟组成部分,以 0 到 59 之间的一个整数来表示。
示例
以下示例以三种不同的方式显示对象的分钟组件 DateTimeOffset :
通过检索属性的值 Minute 。
通过使用“m”格式说明符调用 ToString(String) 方法。
通过使用“mm”格式说明符调用 ToString(String) 方法。
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。