如何为XML序列化指定带有公共访问器的NonSerialized字段?
[NonSerialized]
public String _fooBar;
//Declaring the property here will serialize the _fooBar field
public String FooBar
{
get { return _fooBar; }
set { _fooBar = value; }
}
答案 0 :(得分:17)
属性不会被BinaryFormatter
序列化,只有字段。 [NonSerialized]
属性对XML序列化没有意义。请改用[XmlIgnore]
。