Problem with Linefeeds in C #

I use System.Environment.NewLineto add lines between the lines. This is in C # dll. This dll uses the IBM RATIONAL CLEARQUEST API to insert these values into the Oracle database . CLEARQUEST configured Linux-box, and I'm not sure what operating system is installed the Oracle .

The point is System.Environment.NewLineme using in concatenation (with the + operator on the line) does not work. The text is displayed as a solid line.

How can I implement line breaks in C #. I tried to use \r\n, but the same result.

Has anyone encountered this issue? I am not sure that the platform can be a factor here.

+3
source share
1

string CRLF = "\x0d\x0a";

Environment.Newline.

http://www-01.ibm.com/support/docview.wss?uid=swg21120820

+3

All Articles