views:

162

answers:

1

hello, if you just know the address of a variable and the type of it, is it possible to see it's value in the visual studio debugger? furthermore, would it be possible to use this address in a conditional or data breakpoint?

i already tried plain casting like this: (bool)(*0x05dc05d1) which is obviously stupid. ;)

thanks

+1  A: 

*(bool*)(0x05dc05d1) should work.

Henrik