我需要將4個可變數字添加到一行,但使用當前代碼它只是替換數字,從而使其毫無意義。添加到文本文件而不刪除
using (StreamWriter writer = new StreamWriter("build.txt"))
{
writer.Write(" " + layer + " " + x + " " + y + " " + block);
Console.WriteLine("[" + layer + "," + x + "," + y + "," + block + "]");
}
所以我需要它來寫......
l x y b l x y b l x y b l x y b ...
...但它並沒有這樣的工作了,和上網是不是特別有幫助,希望在這裏可以提供幫助。
是,使用Jon的例。 :) – 2013-05-03 20:16:05
謝謝,但它寫在每一個新行,而我想它寫在第1行。 – BananaVenom 2013-05-03 20:18:03
@BananaVenom:它不會,如果你只使用'writer.Write'。它不會自動添加新行。您是否使用'WriteLine'? – 2013-05-03 20:19:37