我有一個名爲汽車類,它有一個叫LicencePlate, 當我序列列表以及XmlRootAttribute汽車性能,創建的XML是反序列化XML列出<T>與XmlRootAttribute
<Cars>
<Car>
<LicencePlate></LicencePlate>
</Car>
<Cars>
序列化是代碼
XmlSerializer ser = new XmlSerializer(ListCars.GetType(), new XmlRootAttribute("Cars"));
但是當我將反序列化這個XML發生錯誤,因爲這個類沒有'Cars'屬性。
有人可以幫助我嗎?
您是否使用相同的代碼進行反序列化? – 2012-03-21 20:56:59