Tagged Questions
The line-feeds tag has no wiki summary.
2
votes
6answers
366 views
What is the difference between “\r” and “\n”? [closed]
Possible Duplicate:
What is the difference between \r and \n?
I understand that it's different for each Operating System, for example, "\r\n" may be expected in Windows, "\n" may be ...
2
votes
5answers
850 views
Carriage return required when printing to the console in Windows?
It seems like just putting a linefeed is good enough, but I know it is supposed to be carriage return + line feed. Does anything horrible happen if you don't put the carriage return and only use line ...
1
vote
0answers
58 views
How do I maintain carriage return/linefeed values (\r\n) in the text of a JSON value using Json.NET?
I am new to JSON and I have been assigned a project where I need to consume it from a third-party web service. I decided to use Json.NET because it looks to be pretty complete and it seems to just ...