I\'m trying to write the contents of an array to a text file. I\'ve created the file, assigned text boxes to the array (not sure if correctly). Now I want to write the con
using (FileStream fs = File.Open("scores.txt")) { StreamWriter sw = new StreamWriter(fs); scoreArray.ForEach(r=>sw.WriteLine(r)); }