我試圖將變量寫入CSV文件中的一行,其中每個變量位於不同的單元格中。我的問題是,所有的變量都寫入到同一個小區試圖用「追加」和「AppendLine」不能把多個參數將多個變量寫入一個CSV行
時,這是我的代碼:
var NBSref = textBox3.Text;
var Lenght = textBox1.Text;
var Width = textBox2.Text;
string csvpath = "FILE LOCATION";
StringBuilder csvcontentNew = new StringBuilder();
csvcontentNew.Append(NBSref + Lenght + Width); // This is my issue
//String that will define CSV Location
File.AppendAllText(csvpath, csvcontentNew.ToString());
textBox1.Clear();
textBox2.Clear();
textBox3.Clear();
當我使用「追加」所有的變量數據插入到我的文件,但低於
This is what I get from my program
都在同一個小區看到,但是這是我想要的:
Ideally what my program would output