how can i unserialize a field whic is in the serializable class
I want to make a class serializable but i dont want make serializable some fileds in this class. how ca开发者_C百科n do that?
Thanks for your helps.
If you are using BinaryFormatter to perform the serialization you might add the [NonSerialized]
attribute to the field you wish to exclude.
For XmlSerializer look at the [XmlIgnore]
attribute.
For DataContractSerializer look at the [IgnoreDataMember]
attribute.
精彩评论