3
Answers

cant understand the code.

Photo of Darshak Hingrajiya

Darshak Hingrajiya

11y
1.1k
1
private bool GetBit(byte b, int pos)
{
return ((b & (byte)(1 << pos)) != 0);
}

Answers (3)