I set a value for a Multiline Textbox like this.
Multiline Textbox
textBox1.Text = \"Line1\\r\\n\\r\\nLine2\";
But, only one line space in outpu
Try this one
textBox1.Text = "Line1" + Environment.NewLine + "Line2";
Working fine for me...