clamp
clamp

Reputation: 34046

Visual Studio C++ Debugger, get value from address

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

Upvotes: 0

Views: 2853

Answers (1)

Henrik
Henrik

Reputation: 23324

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

Upvotes: 4

Related Questions