joe_pool_is
Contributor
How are Line Breaks written to a TextBox in C#?
[CS]TextBox1.Multiline = True;
TextBox1.Text = "Line 1\nLine 2"; // does not add a new line.[/CS]
[CS]TextBox1.Multiline = True;
TextBox1.Text = "Line 1\nLine 2"; // does not add a new line.[/CS]