Beispiel #1
0
 protected bool Equals(ActiveProject other)
 {
     return string.Equals(ProjectName, other.ProjectName) && string.Equals(OrganizationName, other.OrganizationName) && LinesOfCode == other.LinesOfCode && OpenIssueCount == other.OpenIssueCount && Contributors.SequenceEqual(other.Contributors);
 }
Beispiel #2
0
 protected bool Equals(ActiveProject other)
 {
     return(string.Equals(ProjectName, other.ProjectName) && string.Equals(OrganizationName, other.OrganizationName) && LinesOfCode == other.LinesOfCode && OpenIssueCount == other.OpenIssueCount && Contributors.SequenceEqual(other.Contributors));
 }