コード例 #1
0
ファイル: ValueCounts.cs プロジェクト: edongashi/explorer
 private static ValueCounts AccumulateRow(ValueCounts vc, CountableRow row)
 {
     vc.AccumulateRow(row);
     return(vc);
 }
コード例 #2
0
ファイル: ValueCounts.cs プロジェクト: diffix/explorer
 private static ValueCounts AccumulateRow <T>(ValueCounts vc, T row)
     where T : CountableRow
 {
     vc.AccumulateRow(row);
     return(vc);
 }