Best way to parse csv file?
I have a csv file that contains 10 columns. I specifically need to use 2 of those columns: reportid and amount. I could have multiple lines for each report id. I'd like to get the sum for each report id. What is the best way to accomplish this using c#? Thanks.