how to write list into csv file in c# code example
Example: how to write a list to csv c#
File.WriteAllLines("text.txt", lst.Select(x => string.Join(",", x)));
File.WriteAllLines("text.txt", lst.Select(x => string.Join(",", x)));