序列化时是否可以避免列出属性标签?
//[Serializable()] - removed, unnecessary
public class Foo
{
protected List<FooBar> fooBars = new List<FooBar>();
public virtual List<FooBar> FooBars
{
get { return fooBars; }
set { fooBars = value; }
}
}
// [Serializable()] - removed, unnecessary
public class FooBar
{
public int MyProperty
{ get; set; }
}
序列化 Foo 给出(注释除外):
<Foo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<FooBars> <!-- Unwanted tag -->
<FooBar>
<MyProperty>7</MyProperty>
</FooBar>
<FooBar>
<MyProperty>9</MyProperty>
</FooBar>
</FooBars>
</Foo>
想要的输出:
<Foo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<FooBar>
<MyProperty>7</MyProperty>
</FooBar>
<FooBar>
<MyProperty>9</MyProperty>
</FooBar>