Ejemplo n.º 1
0
 private static ValueCounts AccumulateRow(ValueCounts vc, CountableRow row)
 {
     vc.AccumulateRow(row);
     return(vc);
 }
Ejemplo n.º 2
0
 private static ValueCounts AccumulateRow <T>(ValueCounts vc, T row)
     where T : CountableRow
 {
     vc.AccumulateRow(row);
     return(vc);
 }