Skip to content

Export CSV

Andrei Ignat edited this page Jan 14, 2016 · 8 revisions

Video demo at YouTube Export CSV #Code:

    var arrCSV= new List<string>();
    arrCSV.Add("Name,WebSite,CV");
    arrCSV.Add("Andrei Ignat,http://msprogrammer.serviciipeweb.ro/,http://serviciipeweb.ro/iafblog/content/binary/cv.doc");
    arrCSV.Add("Andrei Ignat,http://msprogrammer.serviciipeweb.ro/,http://serviciipeweb.ro/iafblog/content/binary/cv.doc");

    var data = ExportFactory.ExportDataCsv(data.ToArray(), ExportToFormat.Excel2007);
    File.WriteAllBytes("a.xlsx", data);
    Process.Start("a.xlsx");

Clone this wiki locally