2
我有以下類XmlSerialization和列表
public class Notifications : List<Notification> { }
不幸的是,當它的序列化,它看起來像
<ArrayOfNotification>
<Notification>
...
我怎樣才能像根節點是通知? 我已經嘗試了類的幾個不同的屬性,但沒有編譯。
我有以下類XmlSerialization和列表
public class Notifications : List<Notification> { }
不幸的是,當它的序列化,它看起來像
<ArrayOfNotification>
<Notification>
...
我怎樣才能像根節點是通知? 我已經嘗試了類的幾個不同的屬性,但沒有編譯。
嘗試
using System.Xml.Serialization;
...
[XmlType(TypeName="Notifications")]
public class Notifications ...
謝謝,我認爲必須有一個屬性,我只是沒有找到那一個。我曾嘗試過XmlElement,XmlArray等 – CaffGeek 2009-12-18 18:47:49
看到http://stackoverflow.com/questions/496488/xmlserialization-collection-as-array的一些想法。 – Cheeso 2009-12-18 18:35:57