private void tsBtnExportarPacientes_Click(object sender, EventArgs e) { List <PacienteExp> ListadoPaciente = new List <PacienteExp>(); ListadoPaciente = Listado(); DataTable dtListado = new DataTable(); ListtoDataTableConverter converter = new ListtoDataTableConverter(); dtListado = converter.ToDataTable(ListadoPaciente); FuncionesBases.ExpCsv(dtListado); }