计算不浪费的 XElement 长度?

发布于 2024-11-26 05:49:10 字数 152 浏览 0 评论 0原文

我有一个很大的 XElement 属性,并且想知道它的字节大小以用于记录目的。我不想只是 ToString() 它,因为我担心潜在的大字符串(不)被 GC 处理。

计算 XElement (.NET 4.0) 的 XML 内容的智能/紧凑方法是什么?

谢谢。

I have a large XElement property, and want to know the byte size of it for logging purposes. I don't want to just ToString() it because I have concerns about potentially big strings (not) getting GC'd.

What is a smart/compact way to calculate the XML content of an XElement (.NET 4.0).

Thanks.

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

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

发布评论

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

评论(1

书信已泛黄 2024-12-03 05:49:10

在 C# 中,没有简单的方法可以知道对象的大小。您可以在了解基本类型的大小并使用反射的情况下递归计算它,但这并不是一件容易的事。

我假设您并不真正关心 XElement 大小,而是关心序列化的 XML 内容(它们的大小自然有很大不同)。我认为要得到它,你需要序列化它(即调用 ToString()) - 没有办法解决它。

In C#, there is no easy way to know an object's size. You can recursively compute it knowing the size of the primitive types and using reflection, but it's not an easy job.

I assume you don't really care about the XElement size, but rather about the serialized XML content (they are quite different sizes naturally). I think to get that you need to serialize it (i.e. call ToString()) - there is no way around it.

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