Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果您只知道变量的地址及其类型,是否可以在 Visual Studio 调试器中看到它的值?此外,是否可以在条件断点或数据断点中使用此地址?
我已经尝试过像这样的普通转换: (bool)(*0x05dc05d1) 这显然很愚蠢。;)
谢谢
*(bool*)(0x05dc05d1)应该管用。
*(bool*)(0x05dc05d1)