1
votes
votes
4 answers
C# load textfile contents to ListBox
My code below is able to easily load textfile contents to a textBox, with Multiline. FileInfo myFile = new FileInfo(@"D:\output.txt"); TextReader myData = myFile.OpenText(); textBox1.Text = myData.ReadToEnd(); myData.Close ...
