How can I use a List as a parameter on a method, I try this syntax :
void Export(List<T> data, params string[] parameters){
}
I got compilation error :
Error 34 The type or namespace name 'T' could not be found (are you missing a using directive or an assembly reference?) D:\Resocentro\Proyectos\SRA\SRA.Data\Model\ETLPackague\IETLPackage.cs 15 28 SRA.Data
Thanks,