I have a TextBox with AcceptsReturn="True"
Now I want to read from it line by line
I tried code:
string[] modelLines;
modelLines = ModelTextBox.Text.Split('\n');
But it doesnt work, how to read from TextBox line by line?