hi i am using FileHelperEngine for parsing csv files.
FileHelperEngine csvEngine = new FileHelperEngine(typeof (Model));
Model[] lines= csvEngine.ReadFile(fileName) as Model[];
this works fine if the columns order matchh the order of the properties in Model object all the csv files have header at the first line. but i have propblem when the header order is not the same as the Model properties...
how can it work if the order of the csv columns is not the same order as the Model object ?