Last week I had to serialize a class. The important thing was that I wanted to serialize all values except one. Most of the time I use the following construct:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Serializable] | |
public class Product | |
{ | |
[NonSerialized] //NonSerialized works on field values | |
private int _id; | |
public int Id | |
{ | |
get{return _id;} | |
set{_id=value;} | |
} | |
[NonSerialized] //NonSerialized does not work on properties | |
public string Name{get;set;} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Product | |
{ | |
[XmlIgnore] | |
public int Id{get;set;} | |
[XmlIgnore] | |
public string Name{get;set;} | |
} |