C# 中的换行问题

发布于 2024-10-24 07:42:38 字数 373 浏览 0 评论 0原文

我使用 System.Environment.NewLine 在行之间添加换行符。这是在 C# dll 中。该 dll 使用 IBM RATIONAL CLEARQUEST API 将这些值插入到 Oracle 数据库中。 CLEARQUEST 是在 Linux 机器中设置的,我不确定 Oracle 在哪个操作系统下设置。

要点是我在连接中使用的 System.Environment.NewLine (在字符串上使用 + 运算符)不起作用。文本作为连续字符串出现。

我怎样才能实现C#中的换行符?我尝试使用 \r\n 但结果相同。

有人遇到过这个问题吗?我不确定平台是否是这里的一个因素

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 with \r\n but same result.

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陈独秀 2024-10-31 07:42:38

尝试

string CRLF = "\x0d\x0a";

并使用它来代替 Environment.Newline

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

Try

string CRLF = "\x0d\x0a";

And use that instead of Environment.Newline.

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文