I never know which way a component will go. Textboxs perfer "\r\n" the carriage return and linefeed pair. I have kind of left the C special characters on this issue. I now use something like the following:
string str = string.Format("Line 1{0}Line 2{0}Line3",Environment.NewLine);
|