Skip to content

Instantly share code, notes, and snippets.

@willm
Last active August 29, 2015 14:04
Show Gist options
  • Save willm/7227f523459a9811c409 to your computer and use it in GitHub Desktop.
Save willm/7227f523459a9811c409 to your computer and use it in GitHub Desktop.
Serialize objet to csv ServiceStack.Text
var csv = CsvSerializer.SerializeToCsv(new[]{
new Dog () {
Bark = "Woof!",
Male = true,
Size = 10
}});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment