Question

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

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top