共用方式為


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 變數,以取得分鐘的第二個。

適用於

另請參閱