Esempio n. 1
0
 public static BitWriter Write_B(this BitWriter writer, int value)
 {
     // shift left to align the lowest bit with the highest
     writer.WriteBit(value << 7);
     return(writer);
 }