Mono.CSharp.DefiniteAssignmentBitSet.GetBit C# (CSharp) 메소드

GetBit() 개인적인 메소드

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