Exemplo n.º 1
0
 public void ArraySet(IBitStream Buffer, int pos, int val)
 {
     long p = pos;
     p *= this.NumBits;
     Buffer.WriteAt ((uint)val, this.NumBits, p);
 }
Exemplo n.º 2
0
 public void ArraySet(IBitStream Buffer, int pos, int val)
 {
     Buffer.WriteAt ((uint)val, this.NumBits, pos * this.NumBits);
 }