blah blah blah is here! blah blah » Close

1
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 ...

Feedback