我有以下课程
public class Notifications : List<Notification> { }
不幸的是,当它被序列化时,它看起来像
<ArrayOfNotification>
<Notification>
...
如何让该根节点通知? 我在类上尝试了一些不同的属性,但没有编译。
答案 0 :(得分:2)
尝试
using System.Xml.Serialization;
...
[XmlType(TypeName="Notifications")]
public class Notifications ...