clearquest - Problem with Linefeeds in C# -


I use System.Environment.NewLine to add a line feed between lines . This is in a C # dll. This DLL uses the IBM RATIONAL CLEARQUEST API to insert these values ​​in Oracle CLEARQUEST to a Linux The box is set up and I'm not sure where the OS Oracle is.

Point is System.Environment. The newest I use in compiling (with + operator on string) does not work. The text comes in the form of continuous string.

How can I realize the line breaks in C # I tried with \ r \ n but this result

Has anyone encountered this problem? I'm not sure that the forum can be a factor here

please try

  string CRLF = "\ x0d \ x0a";   

and instead use environment. New Line

Source

Comments