Mono.CSharp.DefiniteAssignmentBitSet.GetBit C# (CSharp) Méthode

GetBit() private méthode

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