DateAndTime.Second(DateTime) 方法

定义

返回表示一分钟内第几秒的整数值,该值介于 0 和 59 之间。

public:
 static int Second(DateTime TimeValue);
public static int Second (DateTime TimeValue);
static member Second : DateTime -> int
Public Function Second (TimeValue As DateTime) As Integer

参数

TimeValue
DateTime

必需。 要从中提取秒的 Date 值。

返回

介于 0 和 59 之间表示一分钟内第几秒的整数值。

示例

以下示例使用 Second 函数从指定时间获取分钟中的第二分钟。 在开发环境中,时间文本使用代码的区域设置以短时间格式显示。

Dim thisTime As Date
Dim thisSecond As Integer
thisTime = #4:35:17 PM#
thisSecond = Second(thisTime)
' thisSecond now contains 17.

注解

还可以通过调用 DatePart 并指定 DateInterval.SecondInterval 参数来获取分钟中的第二个。

适用于

另请参阅