Xml序列化和列表

时间:2009-12-18 18:18:06

标签: xml list serialization xmlserializer

我有以下课程

public class Notifications : List<Notification> { }

不幸的是,当它被序列化时,它看起来像

<ArrayOfNotification>
  <Notification>
  ...

如何让该根节点通知? 我在类上尝试了一些不同的属性,但没有编译。

1 个答案:

答案 0 :(得分:2)

尝试

using System.Xml.Serialization;
...
[XmlType(TypeName="Notifications")]
public class Notifications ...