I've googled this and can't find an answer.
Basically, I have a TextBox. I want to read a textbox line by line. I have this code:
string[] lst = txt.Split(new Char[] { '\n', '\r' }, StringSplitOptions.RemoveEmptyEntries);
This splits up every line but I can't modify or read it. How do I do this?

foreach(var s in lst) MessageBox.Show(s). – Theodoros Chatzigiannakis Jan 31 at 23:31