Ejemplo n.º 1
0
 public static bool IsEqualTo(this ForumThread thisThread, ForumThread thatThread)
 {
     return
         (thisThread.ForumName == thatThread.ForumName
          &&
          thisThread.Subject == thatThread.Subject
          &&
          thisThread.LastPostDateTime == thatThread.LastPostDateTime
          &&
          thisThread.Replies == thatThread.Replies
          &&
          thisThread.IsArchived == thatThread.IsArchived
         );
 }
 public static bool IsEqualTo(this ForumThread thisThread, ForumThread thatThread)
 {
     return
         thisThread.ForumName == thatThread.ForumName
         &&
         thisThread.Subject == thatThread.Subject
         &&
         thisThread.LastPostDateTime == thatThread.LastPostDateTime
         &&
         thisThread.Replies == thatThread.Replies
         &&
         thisThread.IsArchived == thatThread.IsArchived
     ;
 }