Here is a example of writing data to csv file, passing mycustomTypeList and write records.
var csv = new CsvWriter( stream ); csv.WriteRecords( myCustomTypeList );
Suppose I have two tables and want to write data seperately in csv file like sheet 1 and sheet 2, how can i write using csvwriter ? is it possible ?