Mono.Debugger.Architectures.X86_Instruction.format_2_bits C# (CSharp) Method

format_2_bits() protected static method

protected static format_2_bits ( int value ) : string
value int
return string
        protected static string format_2_bits(int value)
        {
            char b1 = ((value & 0x02) != 0) ? '1' : '0';
            char b2 = ((value & 0x01) != 0) ? '1' : '0';
            return String.Concat (b1, b2);
        }