vote up 1 vote down star

How do i represent CRLF using Hex in C#?

flag
ASCII? UTF8? UTF16? – sixlettervariables Sep 17 '08 at 20:28

10 Answers

vote up 3 vote down check

Since no one has actually given the answer requested, here it is:

 "\x0d\x0a"
link|flag
Thank You James. Thats exactly what i was looking for – shindig Sep 17 '08 at 20:38
vote up 0 vote down

In my case, the significance of doing it in Hex is that I don't want it to change depending on the platform my application is run on. I'm writing to a bank transaction file that requires all file records to terminate in CRLF.

Thanks go to the op and poster for the question and answer.

link|flag
vote up 0 vote down

When i use ASCII encoding to read a string having \r\n, for some reason that i do not understand, it strips out the \r, so i want to try inserting a CR LF using hex

link|flag
vote up 0 vote down

What is the significance of doing it in hex?

link|flag
vote up 0 vote down

Unicode / Non Unicode ? I think this question needs more info.

Also, Environment.NewLine is the best thing to use for portability.

link|flag
vote up 2 vote down

Is there any reason for CRLF specifically? In most cases Environment.NewLine is a better bet http://msdn.microsoft.com/en-us/library/system.environment.newline.aspx

link|flag
vote up 1 vote down

Hm... What about Environment.NewLine?

link|flag
vote up 0 vote down

@jonathan because that's the ascii codes they correlate too. 10 and 13

link|flag
vote up 0 vote down

\r\n... ie.

Console.Write("This is a test of CRLF. \r\n This is on the next line.");

See this article.

link|flag
vote up 1 vote down

Not sure why, but it's 0x0d, 0x0a, aka "\r\n".

link|flag
@Jonathan: maybe he wants something like ASCIIEncoding.GetBytes(Environment.NewLine) ? – sixlettervariables Sep 17 '08 at 20:25

Your Answer

Get an OpenID
or

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