Ejemplo n.º 1
0
 public BytesCounter(BytesCounter next)
 {
     this.Next = next;
 }
Ejemplo n.º 2
0
 public TwoWayCopier SetCounters(BytesCounter counter)
 {
     CopierFromLeft.CounterW  = counter;
     CopierFromRight.CounterW = counter;
     return(this);
 }
Ejemplo n.º 3
0
 public BytesCountersRW(BytesCountersRW nextRW)
 {
     R = new BytesCounter(nextRW.R);
     W = new BytesCounter(nextRW.W);
 }