Hi i am writing an app in c# using windows form,
In this form i have a text box that get input form a user, And then I need to to some changes on it.
The problem is that the value in the text box is a long string with “\r\n” as a separator between lines.
How can I get the text in the text box, I need that every line will be a cell a so I can get a string[].
thanks
You could use the
.Linesproperty of TextBox control, that already contains the text splitted in lines.