[分享]大家来看看吧,比较两个时间的方法
前几天一直困惑我的时间查询让我解决的,我是先编写这些代码来实现的.DateTime dt1=new DateTime (this.dateTimePicker1.Value.Year,this.dateTimePicker1.Value.Month,this.dateTimePicker1.Value.Day);
DateTime dt2=new DateTime(this.dateTimePicker1.Value.Year,this.dateTimePicker1.Value.Month,this.dateTimePicker1.Value.Day);
TimeSpan ts=dt1-dt2;
MessageBox.show(ts.Days.ToString());
大家可以举一反三.用此方法可以设置和表中的时间相比较.来实现表查询.