Skip to content

Instantly share code, notes, and snippets.

View pgroene's full-sized avatar
🏠
Working from home

Peter Groenewegen pgroene

🏠
Working from home
View GitHub Profile
services.AddMvc(options =>
{
options.OutputFormatters.Add(new CsvMediaTypeFormatter());
}
/// <summary>
/// Formatter to generate csv
/// </summary>
public class CsvMediaTypeFormatter : TextOutputFormatter
{
/// <summary>
/// CSV Formatter
/// </summary>
public CsvMediaTypeFormatter()