10. 選擇“調試”|“開始執行(不調試)”。
應用程序將重新生成並重新啟動。同樣地,兩個DateTimePicker控件(first和second)將設置成今天的日期。
11. 單擊Compare按鈕。
文本框中會顯示以下內容:
first == second : True
first != second : False
first < second : False
first <= second : True
first > second : False
first >= second : True
這個結果才是正確的。
12. 將second這個DateTimePicker控件的日期調到明天。
13. 再次單擊Compare按鈕。
文本框中會顯示以下內容:
first == second : False
first != second : True
first < second : True
first <= second : True
first > second : False
first >= second : False
同樣地,這些結果是正確的。
14. 單擊Quit。