I have a CSV file that I need to parse. The issue is this: the first 12 columns of the CSV file are known - meaning they will be the SAME on every file that we are sent. But then the remaining columns are different. So one file could have 54 columns, but
then the next file could have 27 columns, and the next have 18 columns. What is the best way to efficently process these files without knowning the total number of columns for each file, except the first 12 are always the same.
C# code.
Go to the complete details ...