3
Answers

cant understand the code.

private bool GetBit(byte b, int pos)
{
return ((b & (byte)(1 << pos)) != 0);
}
Answers (3)