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.
我正在尝试调试我的演示应用程序(Windows 窗体)以破坏内存中的特定功能。
我将我的应用程序附加到windbg;获取函数的地址(通过 x 命令单击某个按钮)并在那里放置一个未解析的断点(bu)。
但是我无法激活这个断点,因为我的函数地址不可用;即使我运行我的应用程序并通过按钮单击事件调用该函数。
实际上你应该设置一个地址断点,所以使用bp而不是bu这样:
bp
bu
bp 12345678
12345678输出的地址在哪里x,请参阅文档。
12345678
x