有没有办法将数据导出到 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();