C# 的隨手筆記 1 - 讀寫檔範例3 ( 將裝在 List 的 數值寫入 CSV 檔案)

C# 的讀寫檔輸檔 範例 

接續上一篇: 讀寫檔範例3 ( 讀取CSV檔案並且轉為 int 值,並使用 List 裝 讀取值)

利用 FileStream 建立檔案,在使用StreamWriter寫入檔案

  

            using (FileStream FS_test = new FileStream("CSV_test_out.csv", FileMode.Create))
            {
                using (StreamWriter SW_test2 = new StreamWriter(FS_test))
                {

                    for (int i = 0; i < File_collection_List2_int.Count; i = i + 1)
                    {
                        string tmp_s = "";
                        for (int j = 0; j < File_collection_List2_int[i].Count; j = j + 1)
                            tmp_s = tmp_s + File_collection_List2_int[i][j].ToString() + ",";
                        tmp_s = tmp_s + "\r\n";
                        SW_test2.Write(tmp_s);
                    }

                    SW_test2.Flush();
                    SW_test2.Close();
                    FS_test.Close();

                }
            }