コード例 #1
0
 public void Add(SummaryResults other)
 {
     totalFound    += other.totalFound;
     totalMustPass += other.totalMustPass;
     totalTests    += other.totalTests;
 }
コード例 #2
0
ファイル: SummaryResults.cs プロジェクト: n1rvana/ZXing.NET
 public void Add(SummaryResults other)
 {
    totalFound += other.totalFound;
    totalMustPass += other.totalMustPass;
    totalTests += other.totalTests;
 }