Saving from List to txt

后端 未结 7 1805
生来不讨喜
生来不讨喜 2020-12-03 13:26

I want my program to read from two text files into one List. The List is sorting and cleaning duplicates.

I want the

7条回答
  •  既然无缘
    2020-12-03 14:07

    StreamWriter file = new System.IO.StreamWriter(speichern);
    foreach(string x in ausgabeListe)
        file.WriteLine(x);
    file.Close();
    

提交回复
热议问题