XElement 内部是否存储实现 IEnumerable 的对象?作为字符串内容(因此作为 XText )?

发布于 2024-11-05 12:26:40 字数 535 浏览 0 评论 0原文

在以下示例中,XElement 如何在内部存储实现 IEnumerable 的对象?是否对该集合中存储的每个 A 类型对象调用 ToString,并且结果值被视为字符串内容(作为 XText)以及因此附加到“someString”值,或者......?

class Program
{
    static void Main(string[] args)
    {
        A[]  = new A[10];
        for (int i = 0; i < 10; i++)
            a[i] = new A();

        XElement element = new XElement("XMLElement", "someString", a);
        Console.WriteLine(element);
    }
}

class A { }

谢谢

How does in the following example XElement internally store an object implementing IEnumerable<A>? Is ToString called on each of A type objects stored in this collection and the resulting value is treated as a string content ( as aXText) and is thus appended to "someString" value, or ...?

class Program
{
    static void Main(string[] args)
    {
        A[]  = new A[10];
        for (int i = 0; i < 10; i++)
            a[i] = new A();

        XElement element = new XElement("XMLElement", "someString", a);
        Console.WriteLine(element);
    }
}

class A { }

thank you

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

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

发布评论

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

评论(1

杀手六號 2024-11-12 12:26:40

请参阅 http://msdn.microsoft.com/en-us/library/bb943882。 aspx 了解您可以使用构造函数和方法(如 Add)作为 XDocumentsXElements 的内容传入的内容。
对于您的 A 实例,调用 ToString() 是正确的,并且附加调用的每个结果以形成“XMLElement”的单个 XText 子节点的值“您创建的 XElement

See http://msdn.microsoft.com/en-us/library/bb943882.aspx for an explanation what you can pass in as contents of XDocuments and XElements with the constructors and methods like Add.
For your A instances you are right that ToString() is called and that each result of that called is appended to form the Value of a single XText child node of the "XMLElement" XElement you create.

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