有没有一种方法可以将数据导出到CSV文件中的特定列?我可以将数据导出到附加行,但是需要指定要保存到的列。
我的保存代码是:
{
StreamWriter sw = File.AppendText("log.csv");
{
//need this in column 1
sw.WriteLine(TextBox21.Text + ",");
//need this in column 2
sw.WriteLine(TextBox41.Text + ",");
}
sw.Close();
最佳答案
是的,像这样:
var columns = new string[10];
columns[5] = "hello";
sw.WriteLine( string.Join( ",", columns ));
关于c# - 将列写入CSV文件C#,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16197777/