我有三个整数:小时、分钟和秒。
我想用System创建一个DateTime
对象。以上三个变量提供的日期和时间
查看MSDN并查看DateTime
存在的构造函数,您会发现这是可能的:
var theDate = new DateTime (DateTime.Today.Year, DateTime.Today.Month, DateTime.Today.Day, hours, minute, second);
您可以使用DateTime.Today
来获得午夜的当前日期,并使用TimeSpan
添加您需要的小时数,这是表示一天中的小时数的好方法:
TimeSpan time = new TimeSpan(12, 20, 20); // hours, minutes, seconds
DateTime todayWithTime = DateTime.Today + time;
参见:
- TimeSpan(Int32, Int32, Int32)
- 操作符+ (DateTime,时间间隔)
参见DateTime。今天和这个DateTime构造函数
DateTime today = DateTime.Today;
new DateTime(today.Year, today.Month, today.Day, 10, 39, 30);
你有一个构造函数,它接受:
DateTime(Int32, Int32, Int32, Int32, Int32, Int32)
初始化DateTime结构的新实例为指定的年、月、日、时、分和秒。
或者您可以简单地使用DateTime.Parse()
解析小时/分钟/秒,它将自动生成当前日期(这也写在文档中)