Skip to content

Instantly share code, notes, and snippets.

@simonech
simonech / CsvActionResult.cs
Created November 18, 2012 10:27
ActionResult for ASP.NET MVC that returns a CSV file from any list of objects
using System;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.Reflection;
using System.Text;
using System.Web;
using System.Web.Mvc;
namespace webnetconf.website.Helpers