예제 #1
0
 public static byte AddBit(this byte b, byte bitIndex)
 {
     checkByteBitIndex(bitIndex);
     return(b.AddBits((byte)(1 << bitIndex)));
 }