Please Help with "\n"
C#
5
Posts
4
Posters
0
Views
1
Watching
-
I try to use "\n" in C# - textBox1.Text=textBox1.Text+"\n", but it don't work. Maybe some endl or endofline ? How I can solve this problem ?:confused: Alex
try \r\n - Kannan
-
I try to use "\n" in C# - textBox1.Text=textBox1.Text+"\n", but it don't work. Maybe some endl or endofline ? How I can solve this problem ?:confused: Alex
And make sure your textbox is multiline too!! :-D
-
And make sure your textbox is multiline too!! :-D
Or you could use Environment.NewLine
-
I try to use "\n" in C# - textBox1.Text=textBox1.Text+"\n", but it don't work. Maybe some endl or endofline ? How I can solve this problem ?:confused: Alex