当前位置:  开发笔记 > 编程语言 > 正文

XmlSerialization Collection as Array

如何解决《XmlSerializationCollectionasArray》经验,为你挑选了1个好方法。

我正在尝试序列化需要使用多个同名元素的自定义类.
我尝试过使用xmlarray,但它将它们包含在另一个元素中.

我希望我的xml看起来像这样.


     some text
     some more text

我的代码:

[Serializable(), XmlRoot("root")]
public class test
{
      [XmlArray("trees")]
      public ArrayList MyProp1 = new ArrayList();

      public test()
      {
           MyProp1.Add("some text");
           MyProp1.Add("some more text");  
      }
}

Marc Gravell.. 7

尝试使用[XmlElement("trees")]:

[Serializable(), XmlRoot("root")]
public class test
{
    [XmlElement("trees")]
    public List MyProp1 = new List();

    public test()
    {
        MyProp1.Add("some text");
        MyProp1.Add("some more text");
    }
}

请注意,我改变ArrayListList清理输出; 在1.1中,StringCollection将是另一种选择,尽管它具有不同的区分大小写规则.



1> Marc Gravell..:

尝试使用[XmlElement("trees")]:

[Serializable(), XmlRoot("root")]
public class test
{
    [XmlElement("trees")]
    public List MyProp1 = new List();

    public test()
    {
        MyProp1.Add("some text");
        MyProp1.Add("some more text");
    }
}

请注意,我改变ArrayListList清理输出; 在1.1中,StringCollection将是另一种选择,尽管它具有不同的区分大小写规则.

推荐阅读
mobiledu2402851203
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有