1. 程式人生 > >C#兩個日期控制元件的比較,出現奇怪的現象

C#兩個日期控制元件的比較,出現奇怪的現象

        C#兩個日期的比較用法如下:

DateTime t1;

DateTime t2;

DateTime.Compare(t1,t2)反回整型

值型別

條件

小於零

t1早於 t2.

等於零

t1 等於 t2.

大於零

t1 晚於 t2

現在桌面上有兩個日期控制元件,tbStartDate和tbEndDate,程式碼如下:

            if (DateTime.Compare(this.tbStartDate.Value, this.tbEndDate.Value) > 0)
            {
                MessageBox.Show("查詢起始日期不能大於終止日期,[起始日期]:" + this.tbStartDate.Value.ToString() + " [終止日期]:" + this.tbEndDate.Value.ToString() + "!", "系統提示", MessageBoxButtons.OK, MessageBoxIcon.Stop);
                return;
            }

查詢時老是提示:查詢起始日期不能大於終止日期,如下圖:

但從對話方塊中,看這兩個日期是相同的,相同的日期應該返回零值,奇怪!你總不能不讓客戶查詢某一天的資料吧。如果把程式碼改為如下是可以的:

            if (DateTime.Compare(DateTime.Parse(this.tbStartDate.Value.ToString("yyyy-MM-dd")), DateTime.Parse(this.tbEndDate.Value.ToString("yyyy-MM-dd"))) > 0)
            {
                MessageBox.Show("查詢起始日期不能大於終止日期,起始日期:" + this.tbStartDate.Value.ToString() + " 終止日期:" + this.tbEndDate.Value.ToString() + "!", "系統提示", MessageBoxButtons.OK, MessageBoxIcon.Stop);
                return;
            }

測試如下,兩個DateTimePicker控制元件的CustomFormat為“yyyy-MM-dd”,日期相同,為2017-5-29

            int t1 = DateTime.Compare(this.tbStartDate.Value, this.tbEndDate.Value);
            string str1 = this.tbStartDate.Value.ToString("yyyyMMddHHmmss");
            string str2=this.tbEndDate.Value.ToString("yyyyMMddHHmmss");
            int t2 = DateTime.Compare(DateTime.Parse(this.tbStartDate.Value.ToString("yyyy-MM-dd")), DateTime.Parse(this.tbEndDate.Value.ToString("yyyy-MM-dd")));

t1=1,t2=0,str1 =2017052908155,str2=2017052908155

為什麼看上去一樣的日期,怎麼就出現這種情況呢??