Add newline in Textbox
Description: Uses Environment.Newline
Link: http://www.codekeep.net/snippets/a8425475-4d9c-44b6-82c0-4ca5521221e7.aspx
textBox1.Text="First Line" + Environment.NewLine + "Second Line";
Description: Uses Environment.Newline
Link: http://www.codekeep.net/snippets/a8425475-4d9c-44b6-82c0-4ca5521221e7.aspx
textBox1.Text="First Line" + Environment.NewLine + "Second Line";
You must be logged in to post a comment.