コード例 #1
0
ファイル: Date.cs プロジェクト: maxbrueckl/WorktimeManagement
 public int CompareTo(IDate other)
 {
     if (other == null)
         return -1;
     return GetHashCode().CompareTo(other.GetHashCode());
 }