Is it possible to write data at the end of the csv file or one line after the end of the csv file when using LINQToCSV library.
I am using LINQtoCSV and passing a List<> to write the data. my List<> is like
x y z
1 4 5
1 5 3
Now i want to do y*z for each record and write the sum at the end of the csv file.
Sum = 35
i Have been searching this for a while but didn't quite find any solution.