- Home /
Multiple Lists to CSV in C#
I have got a few lists and want them to go into a CSV file. I've read about: string CsvContent = string.Join(",", List1.ToArray());
But whith this method you can only add one list and when it adds from left to richt instad of from top to bottom. Anyone knows any other solutions to add multiple lists (containing thousands of items) into one CSV file.
Comment
Your answer
Follow this Question
Related Questions
Multiple Cars not working 1 Answer
Distribute terrain in zones 3 Answers
File exists not working applicationDataPath 1 Answer
C# How to read and cache text file data? 1 Answer
Will System.IO.File work on Macs 2 Answers