I want my program to read from two text files into one List. The List is sorting and cleaning duplicates.
List
I want the
Loop through the list, writing each line individually:
StreamWriter file = new System.IO.StreamWriter(speichern); foreach(string line in ausgabeListe) file.WriteLine(line); file.Close();