int index = textBox.SelectionStart;
string text = textBox.Text.Insert(index, "\r\n");
textBox.Text = text;
textBox.Select(index + 1, 0);
Sample code collection
int index = textBox.SelectionStart;
string text = textBox.Text.Insert(index, "\r\n");
textBox.Text = text;
textBox.Select(index + 1, 0);