如何使用XML序列化的公共访问器指定NonSerialized字段

时间:2011-04-06 01:28:50

标签: c# serialization .net-3.5 xml-serialization nonserializedattribute

如何为XML序列化指定带有公共访问器的NonSerialized字段?

[NonSerialized]
public String _fooBar;
//Declaring the property here will serialize the _fooBar field
public String FooBar
{
    get { return _fooBar; }
    set { _fooBar = value; }
}

1 个答案:

答案 0 :(得分:17)

属性不会被BinaryFormatter序列化,只有字段。 [NonSerialized]属性对XML序列化没有意义。请改用[XmlIgnore]