我有我TimeSpan
的特定原因,所以它必须采用这种格式。我正在尝试在当前时间上增加一个小时。这是我得到的,它不起作用:
TimeSpan time1= TimeSpan.FromHours(1); // my attempt to add 2 hours
TimeSpan ts = DateTime.Now.TimeOfDay;
ts.Add(time1);
MessageBox.Show(ts.ToString()); // for showing me its result
你能给些建议么?