Mono.CSharp.DefiniteAssignmentBitSet.GetBit C# (CSharp) Method

GetBit() private method

private GetBit ( int index ) : bool
index int
return bool
		bool GetBit (int index)
		{
			return large_bits == null ?
				(bits & (1 << index)) != 0 :
				(large_bits[index >> 5] & (1 << (index & 31))) != 0;
		}