datetime クラス : datetime(int,int,int,int,int,int) フィッタ

説明

指定された年、月、日、時、分、秒で初期化された datetime クラスのインスタンスを返します。

構文

new datetime(int Year,int month, int day, int hour, int minute, int second)

引数

クラス名前説明
Yearint年 (1 ~ 9999).
monthint月 (1 ~ 12).
dayint日 (1 ~ 月の日数).
hourint時間 (0 ~ 23).
minuteint分 (0 ~ 59).
secondint秒 (0 ~ 59).

返り値

クラス説明
datetime初期化された datetime クラスのインスタンス。

サンプルコード

1:

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

注意

これは、System.DateTime.DateTime(Int32,Int32,Int32,Int32,Int32,Int32) コンストラクタのラッパーです。

参照リンク

Copyright © Cooker All rights reserved.