예제 #1
0
 public Sum(CounterCollection c)
 {
     Name = "Sum";
     Cc   = c;
 }
예제 #2
0
 public Max(CounterCollection c)
 {
     Name = "Max";
     Cc   = c;
 }
예제 #3
0
 public Min(CounterCollection c)
 {
     Name = "Min";
     Cc   = c;
 }
예제 #4
0
 public Counter(CounterCollection c)
 {
     _cc = c;
 }