Skip to content

Instantly share code, notes, and snippets.

@lbargaoanu
Created November 19, 2015 14:18
Show Gist options
  • Save lbargaoanu/5a0b9ddd610b030acca3 to your computer and use it in GitHub Desktop.
Save lbargaoanu/5a0b9ddd610b030acca3 to your computer and use it in GitHub Desktop.
void Main()
{
var json = JsonConvert.SerializeObject(new Item(5));
var item = JsonConvert.DeserializeObject<Item>(json).Dump();
}
class Item
{
public Item(int integer = 5)
{
Value = integer;
}
public int Value { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment