有没有办法以编程方式知道对象在内存中占用了多少空间? (.Net 2.0)

发布于 2024-07-07 00:47:31 字数 121 浏览 6 评论 0原文

我希望能够知道,在代码的运行时,某个对象占用了多少内存(在本例中为数据集,但我正在寻找“通用”解决方案)。

通过反思这可能吗?

这是针对 .Net 2.0 的。

谢谢!

I would like to be able to know, in run-time in my code, how much memory a certain object is taking (a Dataset in this case, but i'm looking for a "general" solution).

Is this possible through reflection?

This is for .Net 2.0.

Thanks!

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

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

发布评论

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

评论(3

小猫一只 2024-07-14 00:47:31
int size = Marshal.SizeOf(typeof(int));

那也应该有效。

int size = Marshal.SizeOf(typeof(int));

That should work too.

空宴 2024-07-14 00:47:31

太棒了,总而言之,除了使用 Profiling API(需要大量工作)之外,没有简单的方法。
谢谢!

Great, so to sumarize, there is no easy way, other than using the Profiling API which is a lot of work.
Thanks!

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