DateAndTime.Second(DateTime) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回表示一分钟内第几秒的整数值,该值介于 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.Second
Interval
参数来获取分钟中的第二个。