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