Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个存储所选日期和时间的 Datetime 对象。时间默认为上午 12 点,除非您通过代码进行更改,否则它是不可更改的。我有另一个实际存储时间的变量。
如何修改 Datetime 对象中的时间以存储我在另一个字段中的时间值?
只需将一个的日期部分添加到另一个的时间部分:
DateTime date = DateTime.Now.Date; DateTime time = DateTime.Now; DateTime dateAndTime = date.Date + time.TimeOfDay;