开发者

Problem with Linefeeds in C#

开发者 https://www.devze.com 2023-02-17 03:34 出处:网络
I use System.Environment.NewLine to add a line feed between lines. This is in a C# dll. This dll uses IBM RATIONAL CLEARQUEST API\'s to insert into Oracle database these values. CLEARQUEST is setup in

I use System.Environment.NewLine to add a line feed between lines. This is in a C# dll. This dll uses IBM RATIONAL CLEARQUEST API's to insert into Oracle database these values. CLEARQUEST is setup in a Linux box and I am not sure under which OS the Oracle is setup.

Point is the System.Environment.NewLine i use in concatination (with + operator on string) does not work. The text comes as continuous string.

How can i realize the line breaks in C#. I tried wi开发者_StackOverflowth \r\n but same result.

has any one faced this problem? I am not sure if the platform could be a factor here


Try

string CRLF = "\x0d\x0a";

And use that instead of Environment.Newline.

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

0

精彩评论

暂无评论...
验证码 换一张
取 消