为什么Environment.NewLine 显示为方形字符?
我正在使用 .Net Windows 应用程序。在我的机器上,表单将Environment.NewLine正确显示为新行。然而,在测试人员的机器上,相同的Environment.NewLine 显示为方形字符。在我们的两台机器上,出于测试目的,我们将区域设置暂时设置为法语。
如何设置测试人员的机器以正确显示Environment.Newline?
I'm working with a .Net windows application. On my machine, a form displays Environment.NewLine correctly as a new line. However, on a tester's machine, the same Environment.NewLine is being displayed as a square character. On both of our machines, we have our regional settings temporarily set to French, for testing purposes.
How do I set up the tester's machine to display the Environment.Newline properly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第一步 - 找出测试人员机器上的
Environment.NewLine
实际上是什么。也许它是\n
而不是\r\n
,尽管我发现很难想象如何......只需打印出
Environment.NewLine.Length 作为起点。
First step - find out what
Environment.NewLine
actually is on the tester's machine. Perhaps it's somehow\n
instead of\r\n
, although I find it hard to imagine how...Just print out
Environment.NewLine.Length
as a starting point.