我有如下因素代碼,時間跨度時間計算,分 - 豪轉換時間跨度爲int
現在的問題是什麼是瓶坯最好的辦法:
也採取通知「minAdd 「可以通過60,這意味着90分鐘加(一個小時半等)
感謝,
int minAdd = Convert.ToInt16(txtMinAdd.text);
DateTime now = DateTime.Now;
DateTime nextEvent = DateTime.Now.AddMinutes(minAdd);
TimeSpan diff = now - nextEvent;
if (diff > minAdd) -------------- PROBLEM HERE
{
//act here
}
使用diff.TotalMinutes。請在提問前閱讀[doc](http://msdn.microsoft.com/en-us/library/system.timespan.aspx)。 –
你究竟想在這裏做什麼? –