See the thread linked below.
http://www.google.ca/groups?hl=en&lr...0a%2540phx.gbl
To concatenate strings just use the "+".
string s = "Hello" + ", " + "World";
--
Tim Wilson
..Net Compact Framework MVP
"Aaron" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Real basic question here. Since I'm new to C#, how do I code a line feed
> for text. I want to have several paragraphs in a text box and need some
> space between them. Also, please respond with how to concatenated the two
> strings together along with the line feeds. From what I remember from my
> C++ days it was always \n and with an ANSI string I could always do
> something like "String1" + \n\n + "String2"; but apparently that doesn't
> work in C#
>
> Thanks
>
>