コード例 #1
0
ファイル: ActiveProject.cs プロジェクト: danielmarbach/marten
 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);
 }
コード例 #2
0
ファイル: ActiveProject.cs プロジェクト: uwascan/marten
 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));
 }