示例#1
0
 protected bool Equals(AssemblyHistoryItem other)
 {
     return(string.Equals(FullName, other.FullName) &&
            Type == other.Type &&
            ChangedDate.Equals(other.ChangedDate) &&
            string.Equals(Author, other.Author) &&
            string.Equals(Description, other.Description));
 }
示例#2
0
 protected bool Equals(AssemblyHistoryItem other)
 {
     return string.Equals(FullName, other.FullName)
         && Type == other.Type
         && ChangedDate.Equals(other.ChangedDate)
         && string.Equals(Author, other.Author)
         && string.Equals(Description, other.Description);
 }