堆栈和堆查看器

发布于 2024-10-28 05:08:46 字数 58 浏览 2 评论 0原文

.NET 是否有免费的堆栈和堆查看器,它显示在堆栈和堆上分配的类型。我需要这个来进行我将要进行的培训。

Is there a free Stack and Heap viewer for .NET which shows what types are allocated on the stack and the heap. I need this for a training I will be conducting.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

混吃等死 2024-11-04 05:08:46

我使用 WinDbg with SOS 来实现这一点。附加到进程并使用以下命令:

!dumpheap -stat 将列出托管堆上的所有对象。

!clrstack -a 将列出托管调用堆栈,包括当前线程的参数和局部变量。请记住,发布版本可能会限制可用本地变量的数量。

~Xs 切换到线程 X。SOS

有大量其他有用的命令来检查托管应用程序。

I use WinDbg with SOS for that. Attach to the process and use the following commands:

!dumpheap -stat will list all objects on the managed heap.

!clrstack -a will list the managed call stack including parameters and locals for the current thread. Keep in mind that release builds may limit the number of available locals.

~Xs switch to thread X.

SOS has loads of other useful commands to inspect managed applications.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文