vote up 0 vote down star

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?

flag

1 Answer

vote up 0 vote down

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.

link|flag
1  
In addition, convert each character to an integer value, so you can see what they are on the ASCII/Unicode table. – Erich Oct 28 at 22:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.