计算不浪费的 XElement 长度?
我有一个很大的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 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.