-
Notifications
You must be signed in to change notification settings - Fork 26
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");Made by Andrei Ignat, http://msprogrammer.serviciipeweb.ro