CSVファイルへの書き出しは、書き出す項目をカンマで区切って連結する以外は、テキストファイルへの書き出しと変わらない。
1 2 3 4 5 6 7 8 9 10 11 12 13 |
// Word array. string[] fields = { "apple", "orange", "lemon", "pineapple" }; // Joins the words with commas. string outstr = string.Join(",", fields); // Writing to the text file. StreamWriter sw = new StreamWriter(@"C:\Temp\Text3.txt"); sw.WriteLine(outstr); sw.Close(); // Text3.txt // "apple,orange,lemon,pineapple" |