datetime クラス : datetime(int,int,int,int,int,int) フィッタ
説明
指定された年、月、日、時、分、秒で初期化された datetime クラスのインスタンスを返します。
構文
new datetime(int Year,int month, int day, int hour, int minute, int second)
引数
クラス | 名前 | 説明 |
Year | int | 年 (1 ~ 9999). |
month | int | 月 (1 ~ 12). |
day | int | 日 (1 ~ 月の日数). |
hour | int | 時間 (0 ~ 23). |
minute | int | 分 (0 ~ 59). |
second | int | 秒 (0 ~ 59). |
返り値
クラス | 説明 |
datetime | 初期化された datetime クラスのインスタンス。 |
サンプルコード
1: | datetime dt = new datetime(2016, 3, 4, 4, 13, 0); |
注意
これは、System.DateTime.DateTime(Int32,Int32,Int32,Int32,Int32,Int32) コンストラクタのラッパーです。