[solved] print a multiline text in a GUI

hello all I have a great request,
I have a script for read all line in a txt via a html adress, all the text was write in: public StringBuilder sb = new StringBuilder();

in my GUI I write this code:

GUI.Label(new Rect(10, 10, 100, 20), reader.sb.ToString ());

but only the first line was print.

How to print multi line?

thanks you in advance

Put ’
’ into the string.

Ex :

“This is first line
This is second line”

in my txt file I write: 1
2
3
4

But on my GUI same the
was write…