Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Last active December 13, 2015 19:58
Show Gist options
  • Save wullemsb/4966225 to your computer and use it in GitHub Desktop.
Save wullemsb/4966225 to your computer and use it in GitHub Desktop.
Exclude property from serialization, working solution
public class Product
{
[XmlIgnore]
public int Id{get;set;}
[XmlIgnore]
public string Name{get;set;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment