Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Created November 8, 2023 20:01
Show Gist options
  • Save ahmetkucukoglu/52ba3247974078d466a758c1c22b36be to your computer and use it in GitHub Desktop.
Save ahmetkucukoglu/52ba3247974078d466a758c1c22b36be to your computer and use it in GitHub Desktop.
Demo - CsvProductsExporterAdapter
var products = new List<Product>
{
new()
{
Title = "MacBook Pro 14 inch",
Description = "It's now even more capable, thanks to the new M3 chip."
},
new()
{
Title = "MacBook Pro 16 inch",
Description = "It's now even more capable, thanks to the new M3 chip."
}
};
var csvExporter = new CsvProductsExporterAdapter(new CsvHelper(';'));
csvExporter.Export(products);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment