无论出于何种原因,XmlSerializer在序列化期间不包含空列表。我没有找到关于此行为是否正确或是否可以覆盖的文档。我包含了我正在尝试序列化的类型的代码和序列化代码,希望有人可以对此有所了解。
[System.SerializableAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/FacilitySettings.xsd")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="http://tempuri.org/FacilitySettings.xsd", IsNullable=true)]
public class WeightSettings
{
public List<string> WeightOZIdentifiers
{
get
{
return this.weightOZIdentifiersField;
}
set
{
this.weightOZIdentifiersField = value;
}
}
}
public static string ToXmlString<T>(this T obj)
{
var builder = new StringBuilder();
using (var stringWriter = new StringWriter(builder))
{
var xml = new XmlTextWriter(stringWriter);
var serializer = new XmlSerializer(obj.GetType());
serializer.Serialize(xml, obj);
return builder.ToString();
}
}
编辑以反映
答案 0 :(得分:0)
XmlSerializer
无法序列化一个空数组,因为他不知道这个数组的大小。
尝试先初始化数组,然后序列化它。
WeightOZIdentifiers = new string[10];