C# 的隨手筆記 1 - 讀寫檔範例2 ( 利用 List 收集 讀檔案資料)

C# 的讀檔輸檔 範例 

一個 Button: button_read、textBox_Read

 

 

 

 

 

點進去之後寫入


     List<string> File_collection = new List<string>();

                string File_name = "testA.txt";
                using (StreamReader SW_test = new StreamReader(File_name))
                {
                    for (int i = 0; i < 1; )
                    {
                        string Read_Line = "";
                        Read_Line = SW_test.ReadLine();

                        if (Read_Line != null)
                            File_collection.Add(Read_Line);
                        else
                            i = 1;
                   
                    }

                }

                for (int i = 0; i < File_collection.Count; i = i + 1)
                    textBox_Read.Text = textBox_Read.Text + File_collection[i] + "\r\n";

 

 

我將一個文件取名為: testA.txt

利用 List : File_collection 來收集

最後放在 textBox_Read上

 

中間的 for 迴圈是個人喜好這樣寫,如果有興趣可以改成 While loop