Skip to content

Instantly share code, notes, and snippets.

@pilgun
Created December 4, 2015 15:45
Show Gist options
  • Save pilgun/d48f95882b011d4e9b3f to your computer and use it in GitHub Desktop.
Save pilgun/d48f95882b011d4e9b3f to your computer and use it in GitHub Desktop.
Json.Net example
[JsonObject]
public class Book
{
public string Title { get; set; }
public string Author { get; set; }
public string Serialize()
{
return JsonConvert.SerializeObject(this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment