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.
source
share