C# 中的换行问题
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
并使用它来代替
Environment.Newline
。来源 http://www-01.ibm.com/support/docview。 wss?uid=swg21120820
Try
And use that instead of
Environment.Newline
.source http://www-01.ibm.com/support/docview.wss?uid=swg21120820