cant understand the code.

Oct 14 2014 6:41 AM
private bool GetBit(byte b, int pos)
{
return ((b & (byte)(1 << pos)) != 0);
}

Answers (3)