SyntaxFix
Write A Post
Hire A Developer
Questions
Try this
textBox1.Text += "SomeText\r\n"
you can also try
textBox1.Text += "SomeText" + Environment.NewLine;
Where \r is carriage return and \n is new line
\r
\n