iTextSharp.text.pdf.qrcode.BitArray.Get C# (CSharp) Method

Get() public method

public Get ( int i ) : bool
i int
return bool
        public bool Get(int i) {
            return (bits[i >> 5] & (1 << (i & 0x1F))) != 0;
        }