我正在尝试从list<string>
大约 350 行(13 列)用 C# 编写一个 .csv 文件。我用循环写入文件,但我的列表中只有一部分写入文件(206 行半)。这是我的代码:
StreamWriter file = new StreamWriter(@"C:\test.csv", true);
foreach (string s in MyListString)
{
Console.WriteLine(s); // Display all the data
file.WriteLine(s); // Write only a part of it
}
为什么我的文件没有正确填写?有什么限制需要考虑吗?