Is there a way in Visual Studio, either through it's native features or a plugin, to show an integer/long/char variable in the debugger window as a bit array? For example, rather than seeing 5 or 0x5 I'd like to see 101. As a bonus feature I'd like to see them left-padded with the correct amount of zeroes, so that the total width of the field is equal to the actual amount of bits the type is.
(I know I can convert with calc.exe but that's a pain when debugging bit manipulations).