datetime クラス : Second ゲッタ

説明

このインスタンスの秒部分を取得します。

構文

datetimeInstance.Second

引数

無し。

返り値

クラス説明
int秒部分 (0 ~ 59)

サンプルコード

1:

datetime dt = new datetime(2016, 3, 4, 4, 13, 0);

2:

int second = dt.Second; // 0

注意

これは、System.DateTime.Second プロパティのラッパーです。

参照リンク

Copyright © Cooker All rights reserved.